66 lines
2.2 KiB
TypeScript
66 lines
2.2 KiB
TypeScript
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 &&
|
|
<div className="bg-dim"></div>
|
|
}
|
|
<motion.div
|
|
className="bottomsheet"
|
|
initial="hidden"
|
|
animate={ (noInterestInfoBottomSheetOn)? 'visible': 'hidden' }
|
|
variants={ BottomSheetMotionVaiants }
|
|
transition={ BottomSheetMotionDuration }
|
|
>
|
|
<div className="bottomsheet-header">
|
|
<div className="bottomsheet-title">
|
|
<h2>무이자 정보</h2>
|
|
<button
|
|
className="close-btn"
|
|
type="button"
|
|
>
|
|
<img
|
|
src={ IMAGE_ROOT + '/ico_close.svg' }
|
|
alt="닫기"
|
|
onClick={ () => onClickToClose() }
|
|
/>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="fee-cycle">
|
|
<div className="card-fee-box">
|
|
<span className="label">카드사</span>
|
|
<div className="field wid-100">
|
|
<select>
|
|
<option>KB국민</option>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<div className="desc dot">할부개월 : 02, 03, 07</div>
|
|
<div className="desc dot">적용기간 : 2025.06.01 ~ 9999.12.31</div>
|
|
<div className="desc dot">적용금액 : 70,000</div>
|
|
<div className="divider"></div>
|
|
<div className="desc dot">할부개월 : 15, 20, 36, 60</div>
|
|
<div className="desc dot">적용기간 : 2025.06.01 ~ 9999.12.31</div>
|
|
<div className="desc dot">적용금액 : 50,000</div>
|
|
</div>
|
|
</motion.div>
|
|
</>
|
|
)
|
|
}; |