import { motion } from 'framer-motion'; import { SettlementAgencyBottomAgreeProps } from '../../model/types'; import { IMAGE_ROOT } from '@/shared/constants/common'; export const SettlementAgencyBottomAgree = ({ bottomAgreeOn, setBottomAgreeOn }: SettlementAgencyBottomAgreeProps) => { const variants = { hidden: { y: '100%' }, visible: { y: '0%' }, }; const onClickToClose = () => { setBottomAgreeOn(false); }; const onClickToSaveSettlementAgencyAgree = () => { }; return ( <> {bottomAgreeOn &&
}