Files
bknd/examples/remix/app/components/Check.tsx
2025-02-19 14:12:40 +01:00

10 lines
349 B
TypeScript

export function Check({ checked = false }: { checked?: boolean }) {
return (
<div
className={`aspect-square w-6 leading-none rounded-full p-px transition-colors cursor-pointer ${checked ? "bg-green-500" : "bg-white/20 hover:bg-white/40"}`}
>
<input type="checkbox" checked={checked} readOnly />
</div>
);
}