/// import { BaseComponentSizes, ClassName } from "@helpers/types"; type GoogleButtonTextType = "signIn" | "logIn"; type GoogleButtonVariant = "blue" | "white"; export interface GoogleButtonProps extends React.ButtonHTMLAttributes, ClassName { textType: GoogleButtonTextType; size?: BaseComponentSizes; variant?: GoogleButtonVariant; disabled?: boolean; } export {};