Skip to content

Commit

Permalink
fix: add lg type for rounded
Browse files Browse the repository at this point in the history
  • Loading branch information
markw-deriv committed Mar 7, 2024
1 parent cf8c43f commit d94d8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/Button/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface ButtonProps extends ComponentProps<"button"> {
icon?: ReactElement;
isFullWidth?: boolean;
isLoading?: boolean;
rounded?: Extract<TGenericSizes, "md" | "sm">;
rounded?: Extract<TGenericSizes, "lg" | "md" | "sm">;
size?: Extract<TGenericSizes, "lg" | "md" | "sm">;
textSize?: ComponentProps<typeof Text>["size"];
variant?: TVariant;
Expand Down

0 comments on commit d94d8d8

Please sign in to comment.