Sha256: 64ad49ef54658c94e32acd92826a5cfe823d6b46582aa65340167aff3f030c65

Contents?: true

Size: 811 Bytes

Versions: 9

Compression:

Stored size: 811 Bytes

Contents

import { ButtonHTMLAttributes } from 'react'

export default function PrimaryButton({
  className = '',
  disabled,
  children,
  ...props
}: ButtonHTMLAttributes<HTMLButtonElement>) {
  return (
    <button
      {...props}
      className={`inline-flex items-center px-4 py-2 bg-gray-800 dark:bg-gray-200 border border-transparent rounded-md font-semibold text-xs text-white dark:text-gray-800 uppercase tracking-widest hover:bg-gray-700 dark:hover:bg-white focus:bg-gray-700 dark:focus:bg-white active:bg-gray-900 dark:active:bg-gray-300 focus:outline-none focus:ring-2 focus:ring-indigo-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

9 entries across 9 versions & 1 rubygems

Version Path
kaze-0.17.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.16.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.15.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.14.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.13.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.12.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.11.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.10.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx
kaze-0.9.0 stubs/inertia-react-ts/app/javascript/Components/PrimaryButton.tsx