import { BottomSheetMotionDuration, BottomSheetMotionVaiants } from "@/entities/common/model/constant"; import { IMAGE_ROOT } from '@/shared/constants/common'; import { motion } from 'framer-motion'; export interface ArsResendSmsBottomSheetProps { bottomSheetOn: boolean; setBottomSheetOn: (bottomSheetOn: boolean) => void; phoneNumber?: string; callResendSms: () => void; }; export const ArsResendSmsBottomSheet = ({ bottomSheetOn, setBottomSheetOn, phoneNumber, callResendSms }: ArsResendSmsBottomSheetProps) => { const onClickToClose = () => { setBottomSheetOn(false); }; const onCliickToResendSms = () => { if(callResendSms){ callResendSms(); } onClickToClose(); }; return ( <> { (bottomSheetOn) &&
}[01095800212] 번호로 SMS를 재발송 하시겠습니까?