Skip to content

Commit

Permalink
Add missing box size to examples
Browse files Browse the repository at this point in the history
Signed-off-by: Diego Andai <[email protected]>
  • Loading branch information
DiegoAndai authored Sep 22, 2023
1 parent e604454 commit dc635f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/data/material/components/skeleton/Shapes.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export default function Shapes() {
return (
<Stack spacing={1}>
<Skeleton shape="circular" size="box" width={40} height={40} />
<Skeleton shape="rectangular" width={210} height={60} />
<Skeleton shape="rounded" width={210} height={60} />
<Skeleton shape="rectangular" size="box" width={210} height={60} />
<Skeleton shape="rounded" size="box" width={210} height={60} />
</Stack>
);
}
4 changes: 2 additions & 2 deletions docs/data/material/components/skeleton/Shapes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ export default function Shapes() {
return (
<Stack spacing={1}>
<Skeleton shape="circular" size="box" width={40} height={40} />
<Skeleton shape="rectangular" width={210} height={60} />
<Skeleton shape="rounded" width={210} height={60} />
<Skeleton shape="rectangular" size="box" width={210} height={60} />
<Skeleton shape="rounded"size="box" width={210} height={60} />
</Stack>
);
}
4 changes: 2 additions & 2 deletions docs/data/material/components/skeleton/Shapes.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<Skeleton shape="circular" size="box" width={40} height={40} />
<Skeleton shape="rectangular" width={210} height={60} />
<Skeleton shape="rounded" width={210} height={60} />
<Skeleton shape="rectangular" size="box" width={210} height={60} />
<Skeleton shape="rounded" size="box" width={210} height={60} />

0 comments on commit dc635f7

Please sign in to comment.