mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 20:37:21 +00:00
10 lines
349 B
TypeScript
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>
|
|
);
|
|
}
|