We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 790fc03 commit f6b6d0dCopy full SHA for f6b6d0d
src/Card/Card.stories.tsx
@@ -22,7 +22,6 @@ export function Default() {
22
divided={false}
23
helperText="(helper text)"
24
noPadding={false}
25
- size="sm"
26
subTitle="Subtitle"
27
title="Default card title"
28
/>
src/Card/Card.tsx
@@ -29,7 +29,7 @@ type CardProps = {
29
loadingSkeleton?: ReactNode;
30
loadingSkeletonParagraphCount?: number;
31
noPadding?: boolean;
32
- size: 'xs' | 'sm' | 'md' | 'lg';
+ size?: 'xs' | 'sm' | 'md' | 'lg';
33
subTitle?: ReactNode;
34
title?: ReactNode;
35
} & ElementProps;
0 commit comments