@@ -5,6 +5,7 @@ export { default as Badge } from './Badge';
55export type { IBadgeProps } from './Badge' ;
66
77export { default as Card } from './Card' ;
8+ export type { ICardProps } from './Card' ;
89
910export { default as IconButton } from './IconButton' ;
1011export type { IIconButtonProps } from './IconButton' ;
@@ -13,6 +14,7 @@ export { Alert } from './Alert';
1314export type { IAlertProps } from './Alert' ;
1415
1516export { Avatar } from './Avatar' ;
17+ export type { IAvatarProps } from './Avatar' ;
1618
1719export { Breadcrumb } from './Breadcrumb' ;
1820export type { IBreadcrumbProps } from './Breadcrumb' ;
@@ -23,14 +25,18 @@ export { default as Container } from './Container';
2325export type { IContainerProps } from './Container' ;
2426
2527export { Modal } from './Modal' ;
28+ export type { IModalProps } from './Modal' ;
2629export { default as Drawer } from './Drawer' ;
30+ export type { IDrawerProps } from './Drawer' ;
2731
28- export { useToast , IToastProps , Toast } from './Toast' ;
32+ export { useToast , Toast } from './Toast' ;
33+ export type { IToastProps } from './Toast' ;
2934
3035export { default as Divider } from './Divider' ;
3136export type { IDividerProps } from './Divider/types' ;
3237
3338export { default as Progress } from './Progress' ;
39+ export type { IProgressProps } from './Progress' ;
3440
3541// export { default as Stat } from './Stat';
3642
@@ -101,14 +107,13 @@ export type {
101107
102108export { default as Collapse } from './Collapse' ;
103109export { default as CircularProgress } from './CircularProgress' ;
104- // export { Modal } from './Modal';
105- // export type { IModalProps } from './Modal';
106110
107111export { Popover } from './Popover' ;
108112export { Tooltip } from './Tooltip' ;
109113export type { IPopoverProps } from './Popover' ;
110114
111115export { AlertDialog } from './AlertDialog' ;
116+ export type { IAlertDialogProps } from './AlertDialog' ;
112117
113118export { Menu } from './Menu' ;
114119export type {
0 commit comments