import { Dispatch, FC, SetStateAction } from 'react' import { AppleButton } from './AppleButton' import { GoogleButton } from './GoogleButton' import { Box } from '@/design-system' type SocialButtonsProps = { isDisabled: boolean setIsDisabled: Dispatch> } export const SocialButtons: FC = ({ isDisabled, setIsDisabled }) => { return ( ) }