Fix components folder

This commit is contained in:
User
2024-12-27 21:20:40 -05:00
parent da918835c2
commit c34ba176d9
50 changed files with 49 additions and 51 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>
);
}