You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
602 B
JavaScript
18 lines
602 B
JavaScript
import React from 'react';
|
|
|
|
export default function Button({ type = 'submit', className = '', processing, children }) {
|
|
return (
|
|
<button
|
|
type={type}
|
|
className={
|
|
`inline-flex items-center px-4 py-2 bg-gray-900 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest active:bg-gray-900 transition ease-in-out duration-150 ${
|
|
processing && 'opacity-25'
|
|
} ` + className
|
|
}
|
|
disabled={processing}
|
|
>
|
|
{children}
|
|
</button>
|
|
);
|
|
}
|