Skip to content

Commit

Permalink
[Joy] Add missing component exports
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasz-sodzawiczny committed Aug 19, 2022
1 parent c472c42 commit abd70bc
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion packages/mui-joy/src/index.ts
@@ -1,6 +1,9 @@
export { default as colors } from './colors';
export * from './styles';

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

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

Expand All @@ -19,6 +22,18 @@ export * from './Breadcrumbs';
export { default as Button } from './Button';
export * from './Button';

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

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

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

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

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

Expand All @@ -40,6 +55,9 @@ export * from './FormLabel';
export { default as Grid } from './Grid';
export * from './Grid';

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

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

Expand Down Expand Up @@ -73,12 +91,18 @@ export * from './MenuItem';
export { default as MenuList } from './MenuList';
export * from './MenuList';

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

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

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

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

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

Expand Down Expand Up @@ -110,4 +134,4 @@ export { default as TextField } from './TextField';
export * from './TextField';

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

0 comments on commit abd70bc

Please sign in to comment.