import { InputHTMLAttributes } from 'react';

export default function Checkbox({
    className = '',
    ...props
}: InputHTMLAttributes<HTMLInputElement>) {
    return (
        <input
            {...props}
            type="checkbox"
            className={
                'text-indigo-600 focus:ring-indigo-500 rounded border-gray-300 shadow-sm ' +
                className
            }
        />
    );
}
