/** * 커스텀 체크박스 * ...} /> */ export default function Checkbox({ checked, onChange, disabled, className = '', size = 'md' }) { const sizeCls = size === 'sm' ? 'w-4 h-4' : 'w-5 h-5' const iconSize = size === 'sm' ? 'text-[10px]' : 'text-xs' return ( ) }