Init(Core): add to repo and add seeders
This commit is contained in:
15
resources/js/Components/DangerButton.jsx
Normal file
15
resources/js/Components/DangerButton.jsx
Normal file
@@ -0,0 +1,15 @@
|
||||
export default function DangerButton({ className = '', disabled, children, ...props }) {
|
||||
return (
|
||||
<button
|
||||
{...props}
|
||||
className={
|
||||
`inline-flex items-center px-4 py-2 bg-red-600 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-red-500 active:bg-red-700 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 transition ease-in-out duration-150 ${
|
||||
disabled && 'opacity-25'
|
||||
} ` + className
|
||||
}
|
||||
disabled={disabled}
|
||||
>
|
||||
{children}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user