import { InputHTMLAttributes } from 'react';

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