Sha256: 35efdb298556f7b26a3ef169189ed9679ad7722ea531f8d953a57261ddf57a94

Contents?: true

Size: 706 Bytes

Versions: 2

Compression:

Stored size: 706 Bytes

Contents

import { ButtonHTMLAttributes } from 'react'

export default function DangerButton({
  className = '',
  disabled,
  children,
  ...props
}: ButtonHTMLAttributes<HTMLButtonElement>) {
  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 dark:focus:ring-offset-gray-800 transition ease-in-out duration-150 ${
          disabled && 'opacity-25'
        } ${className}`
      }
      disabled={disabled}
    >
      {children}
    </button>
  )
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
kaze-0.8.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx
kaze-0.7.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx