import { motion } from 'framer-motion'; import { IMAGE_ROOT } from '@/shared/constants/common'; import { BottomSheetMotionVaiants, BottomSheetMotionDuration } from '@/entities/common/model/constant'; export interface NoInterestInfoBottomSheetProps { noInterestInfoBottomSheetOn: boolean; setNoInterestInfoBottomSheetOn: (noInterestInfoBottomSheetOn: boolean) => void; }; export const NoInterestInfoBottomSheet = ({ noInterestInfoBottomSheetOn, setNoInterestInfoBottomSheetOn }: NoInterestInfoBottomSheetProps) => { const onClickToClose = () => { // close setNoInterestInfoBottomSheetOn(false); }; return ( <> { noInterestInfoBottomSheetOn &&
}