Install Breeze

This commit is contained in:
User
2024-12-14 18:03:09 -05:00
parent cc613a3692
commit 89d0394de9
64 changed files with 7965 additions and 220 deletions

View File

@@ -0,0 +1,18 @@
export default function InputLabel({
value,
className = '',
children,
...props
}) {
return (
<label
{...props}
className={
`block text-sm font-medium text-gray-700 dark:text-gray-300 ` +
className
}
>
{value ? value : children}
</label>
);
}