Init(Core): add to repo and add seeders
This commit is contained in:
11
resources/js/Components/CreateButton.jsx
Normal file
11
resources/js/Components/CreateButton.jsx
Normal file
@@ -0,0 +1,11 @@
|
||||
export default function CreateButton({ onClick, title }){
|
||||
return (
|
||||
|
||||
<button onClick={ onClick } className="bg-zinc-900 text-white rounded-lg w-fit h-full py-2 px-6 flex items-center">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" className="w-6 h-6">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" d="M12 6v12m6-6H6" />
|
||||
</svg>
|
||||
<span className="pr-4 leading-none">{ title }</span>
|
||||
</button>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user