You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
334 B
React

2 years ago
export default function Checkbox({ name, value, handleChange }) {
return (
<input
type="checkbox"
name={name}
value={value}
className="rounded border-gray-300 text-indigo-600 shadow-sm focus:ring-indigo-500"
onChange={(e) => handleChange(e)}
/>
);
}