diff --git a/front/components/Button.tsx b/front/components/Button.tsx index 14175a40beda..8dc75bbb7452 100644 --- a/front/components/Button.tsx +++ b/front/components/Button.tsx @@ -105,12 +105,14 @@ export function SignInDropDownButton({ export function SignUpDropDownButton({ buttonVariant = "primary", buttonLabel = "Start with Dust", + buttonSize = "sm", buttonIcon = RocketIcon, buttonClassname = "", onClickGoogle, }: { buttonVariant?: "primary" | "secondary" | "tertiary"; buttonLabel?: string; + buttonSize?: "sm" | "md" | "lg"; buttonIcon?: typeof Icon; buttonClassname?: string; onClickGoogle: () => void; @@ -121,7 +123,7 @@ export function SignUpDropDownButton({