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

31 lines
628 B
TypeScript

import type { CheckboxProps } from "$/types/InputTypes";
import clsx from "clsx";
import { forwardRef } from "react";
import MattrixwvCheckbox from "./MattrixwvCheckbox";
const MoltenCheckbox = forwardRef<HTMLInputElement, CheckboxProps>(({
className,
box = true,
...props
}, ref) => {
return (
<MattrixwvCheckbox
className={clsx(
className,
{
"group-data-checked:bg-molten group-data-checked:stroke-white": box,
"group-data-checked:stroke-molten": !box
}
)}
box={box}
{...props}
ref={ref}
/>
);
});
MoltenCheckbox.displayName = "MoltenCheckbox";
export default MoltenCheckbox;