Skip to content

Commit

Permalink
fix(space): add 20 px
Browse files Browse the repository at this point in the history
  • Loading branch information
ororsatti committed Sep 25, 2024
1 parent 904ce3d commit 6ee6633
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lib/passport-ui/src/Core.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export function Spacer({
h
}: {
w?: 4 | 8 | 12 | 16 | 24 | 32 | 48 | 64;
h?: 4 | 8 | 12 | 16 | 24 | 32 | 48 | 64 | 96 | 128 | 256 | 512 | 1024;
h?: 4 | 8 | 12 | 16 | 20 | 24 | 32 | 48 | 64 | 96 | 128 | 256 | 512 | 1024;
}): JSX.Element {
const width = w && `${w}px`;
const height = h && `${h}px`;
Expand Down

0 comments on commit 6ee6633

Please sign in to comment.