Files
MattrixwvReactComponents/lib/component/input/checkbox/PrimaryCheckbox.tsx

25 lines
474 B
TypeScript

import type { CheckboxProps } from "$/types/Input";
import clsx from "clsx";
import MattrixwvCheckbox from "./MattrixwvCheckbox";
export default function PrimaryCheckbox({
className,
box = true,
...props
}: CheckboxProps){
return (
<MattrixwvCheckbox
className={clsx(
className,
{
"group-data-checked:bg-blue-600 group-data-checked:stroke-white": box,
"group-data-checked:stroke-blue-600": !box
}
)}
box={box}
{...props}
/>
);
}