mirror of
https://github.com/theoludwig/react-component-form.git
synced 2024-07-17 07:30:13 +02:00
20 lines
767 B
TypeScript
20 lines
767 B
TypeScript
import classNames from 'clsx'
|
|
|
|
export interface ButtonProps extends React.ComponentPropsWithoutRef<'button'> {}
|
|
|
|
export const Button: React.FC<ButtonProps> = (props) => {
|
|
const { children, className, ...rest } = props
|
|
|
|
return (
|
|
<button
|
|
className={classNames(
|
|
'py-2 px-6 font-paragraph rounded-lg bg-transparent border hover:text-white dark:hover:text-black fill-current stroke-current transform transition-colors duration-300 ease-in-out focus:outline-none focus:text-white dark:focus:text-black border-green-800 dark:border-green-400 text-green-800 dark:text-green-400 hover:bg-green-800 focus:bg-green-800 dark:focus:bg-green-400 dark:hover:bg-green-400',
|
|
className
|
|
)}
|
|
{...rest}
|
|
>
|
|
{children}
|
|
</button>
|
|
)
|
|
}
|