Skip to content

Commit

Permalink
Update default values for Skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
david0xd committed Jan 27, 2025
1 parent 9dd6137 commit 5ca813f
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,12 @@ export const SnapUISkeleton: FunctionComponent<SnapUISkeletonProps> = ({
return (
<Skeleton
width={width || '100%'}
height={height || 16}
borderRadius={mapSnapBorderRadiusToExtensionBorderRadius(borderRadius)}
height={height || 22}
borderRadius={
borderRadius
? mapSnapBorderRadiusToExtensionBorderRadius(borderRadius)
: BorderRadius.MD
}
/>
);
};

0 comments on commit 5ca813f

Please sign in to comment.