/// import { BaseComponentSizes, ClassName } from "@helpers/types"; type AppleButtonTextType = "continueWith" | "signUp" | "signIn"; type AppleButtonVariants = "black" | "white"; export interface AppleButtonProps extends React.ButtonHTMLAttributes, ClassName { textType: AppleButtonTextType; size?: BaseComponentSizes; variant?: AppleButtonVariants; disabled?: boolean; } type AppleLogoColors = "black" | "white"; export interface AppleLogoProps extends ClassName { color: AppleLogoColors; } export {};