Install Breeze

This commit is contained in:
2024-11-09 15:55:56 +01:00
parent 7e78476b1e
commit b39a51c625
65 changed files with 7416 additions and 190 deletions

View File

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