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,20 @@
import { LabelHTMLAttributes } from 'react';
export default function InputLabel({
value,
className = '',
children,
...props
}: LabelHTMLAttributes<HTMLLabelElement> & { value?: string }) {
return (
<label
{...props}
className={
`block text-sm font-medium text-gray-700 ` +
className
}
>
{value ? value : children}
</label>
);
}