Init(Core): add to repo and add seeders
This commit is contained in:
7
resources/js/Components/InputLabel.jsx
Normal file
7
resources/js/Components/InputLabel.jsx
Normal file
@@ -0,0 +1,7 @@
|
||||
export default function InputLabel({ value, className = '', children, ...props }) {
|
||||
return (
|
||||
<label {...props} className={`block font-medium text-sm text-gray-700 ` + className}>
|
||||
{value ? value : children}
|
||||
</label>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user