You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
470 B

import { ButtonHTMLAttributes } from 'react';
export default function ModalButton({ className = '', disabled, children, ...props }: ButtonHTMLAttributes<HTMLButtonElement>) {
return (
<button
{...props}
className={
`mt-4 w-full btn outline-none text-lg ${disabled && 'opacity-25'} ` +
className
}
disabled={disabled}
>
{children}
</button>
);
}