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.

18 lines
797 B

  1. import { ButtonHTMLAttributes } from 'react';
  2. export default function SecondaryButton({ type = 'button', className = '', disabled, children, ...props }: ButtonHTMLAttributes<HTMLButtonElement>) {
  3. return (
  4. <button
  5. {...props}
  6. type={type}
  7. className={
  8. `inline-flex items-center px-4 py-2 bg-white border border-gray-300 rounded-md font-semibold text-xs text-gray-700 uppercase tracking-widest shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 disabled:opacity-25 transition ease-in-out duration-150 ${
  9. disabled && 'opacity-25'
  10. } ` + className
  11. }
  12. disabled={disabled}
  13. >
  14. {children}
  15. </button>
  16. );
  17. }