Spaces:
Running
Running
| import * as React from "react"; | |
| import { cn } from "../../lib/utils"; | |
| export interface CheckboxProps extends React.InputHTMLAttributes<HTMLInputElement> {} | |
| export const Checkbox = React.forwardRef<HTMLInputElement, CheckboxProps>( | |
| ({ className, ...props }, ref) => { | |
| return ( | |
| <input | |
| ref={ref} | |
| type="checkbox" | |
| className={cn( | |
| "h-4 w-4 rounded border border-input bg-background cursor-pointer align-middle", | |
| className | |
| )} | |
| style={{ accentColor: "hsl(var(--primary))" }} | |
| {...props} | |
| /> | |
| ); | |
| } | |
| ); | |
| Checkbox.displayName = "Checkbox"; | |