Skip to content

Commit

Permalink
chore(react): add missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
brionmario committed Feb 12, 2023
1 parent ccc5fdf commit 0e18a7f
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/react/src/components/ListItemIcon/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
*/

export {default} from './ListItemIcon';
export type {ListItemButtonProps} from './ListItemIcon';
export type {ListItemIconProps} from './ListItemIcon';
18 changes: 18 additions & 0 deletions packages/react/src/components/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@
export {default as AppBar} from './AppBar';
export * from './AppBar';

export {default as Box} from './Box';
export * from './Box';

export {default as Button} from './Button';
export * from './Button';

Expand All @@ -31,6 +34,21 @@ export * from './Grid';
export {default as Link} from './Link';
export * from './Link';

export {default as List} from './List';
export * from './List';

export {default as ListItem} from './ListItem';
export * from './ListItem';

export {default as ListItemButton} from './ListItemButton';
export * from './ListItemButton';

export {default as ListItemIcon} from './ListItemIcon';
export * from './ListItemIcon';

export {default as ListItemText} from './ListItemText';
export * from './ListItemText';

export {default as SignIn} from './SignIn';
export * from './SignIn';

Expand Down
1 change: 0 additions & 1 deletion packages/react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ export {
ToggleButton,
ToggleButtonGroup,
IconButton,
Box,
Dialog,
DialogTitle,
DialogContent,
Expand Down

0 comments on commit 0e18a7f

Please sign in to comment.