Skip to content

Commit

Permalink
refactor(Button): adjust gaps between icon and text
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Jul 15, 2024
1 parent 9592f14 commit f3db1af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ export const Button = forwardRef(function Button(
clsx(
"inline-flex items-center justify-center text-center",
size === "sm" && "gap-1 px-2.5",
size === "md" && "gap-1.5 px-4",
size === "lg" && "gap-2 px-6",
size === "md" && "gap-1 px-4",
size === "lg" && "gap-1.5 px-6",
),
),
children:
Expand Down

0 comments on commit f3db1af

Please sign in to comment.