첫 커밋
This commit is contained in:
52
src/entities/payment/ui/transfer-commission-bottom-sheet.tsx
Normal file
52
src/entities/payment/ui/transfer-commission-bottom-sheet.tsx
Normal file
@@ -0,0 +1,52 @@
|
||||
import { IMAGE_ROOT } from '@/shared/constants/common';
|
||||
|
||||
export const TransferCommissionBottomSheet = () => {
|
||||
|
||||
return (
|
||||
<>
|
||||
<div className="bg-dim"></div>
|
||||
<div className="bottomsheet">
|
||||
<div className="bottomsheet-header">
|
||||
<div className="bottomsheet-title">
|
||||
<h2>수수료 및 정산주기</h2>
|
||||
<button
|
||||
className="close-btn"
|
||||
type="button"
|
||||
>
|
||||
<img
|
||||
src={ IMAGE_ROOT + '/ico_close.svg' }
|
||||
alt="닫기"
|
||||
/>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="fee-cycle">
|
||||
<div className="desc dot">정산주기 : 일일(+3일)</div>
|
||||
<div className="desc dot">수수료</div>
|
||||
<div className="divider"></div>
|
||||
<ul className="kv-list">
|
||||
<li className="kv-row pl-10">
|
||||
<span className="k">결제수수료(최저수수료)</span>
|
||||
<span className="v">1원</span>
|
||||
</li>
|
||||
<li className="kv-row pl-10">
|
||||
<span className="k">결제수수료(1원~)</span>
|
||||
<span className="v">1원</span>
|
||||
</li>
|
||||
<li className="kv-row pl-10">
|
||||
<span className="k">취소수수료</span>
|
||||
<span className="v">1원</span>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div className="bottomsheet-footer">
|
||||
<button
|
||||
className="btn-50 btn-blue flex-1"
|
||||
type="button"
|
||||
>확인</button>
|
||||
</div>
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user