File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
1
<script lang =" ts" >
2
- import { type IconProperties } from ' ./properties' ;
3
- export let icons: IconProperties [];
2
+ import { type IconStackProperties } from ' ./properties' ;
3
+ export let icons: IconStackProperties [];
4
4
</script >
5
5
6
6
<div class =" stack-container" >
Original file line number Diff line number Diff line change 1
- export type IconProperties = {
1
+ export type IconStackProperties = {
2
2
type : "image" | "text" ;
3
3
content : string ;
4
4
} ;
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ export { default as Stepper } from './Stepper/Stepper.svelte';
22
22
export { default as Step } from './Stepper/Step.svelte' ;
23
23
export { default as Toast } from './Toast/Toast.svelte' ;
24
24
export { default as GridItem } from './GridItem/GridItem.svelte' ;
25
+ export { default as IconStack } from './IconStack/IconStack.svelte' ;
25
26
26
27
export type { ButtonProperties } from './Button/properties' ;
27
28
export type { ModalProperties , ModalAlign , ModalSize } from './Modal/properties' ;
@@ -44,6 +45,7 @@ export type { BannerProperties } from './Banner/properties';
44
45
export type { TableProperties } from './Table/properties' ;
45
46
export type { StepperProperties } from './Stepper/properties' ;
46
47
export type { ToastProperties } from './Toast/properties' ;
48
+ export type { IconStackProperties } from './IconStack/properties' ;
47
49
48
50
export { defaultIconProperties } from './Icon/properties' ;
49
51
export { defaultButtonProperties } from './Button/properties' ;
You can’t perform that action at this time.
0 commit comments