import { Flex, TouchableOpacity } from '@/@dble_layout'; type Types = { iconSize?: number; onKakao?: () => void; onNaver?: () => void; onGoogle?: () => void; onApple?: () => void; onFacebook?: () => void; onGithub?: () => void; }; export const OAuthTabs = ({ iconSize = 34, onKakao, onNaver, onGoogle, onApple, onFacebook, onGithub }: Types) => { return ( {!!onKakao && ( )} {!!onNaver && ( )} {!!onGoogle && ( )} {!!onApple && ( )} {!!onFacebook && ( )} {!!onGithub && ( )} ); };