Sha256: f85b6cddfac9e0f05fd2401377abe52be131c467fd5d134b8bbdcbf3c6059b9e

Contents?: true

Size: 772 Bytes

Versions: 5

Compression:

Stored size: 772 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

5 entries across 5 versions & 1 rubygems

Version Path
kaze-0.5.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx
kaze-0.4.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx
kaze-0.3.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx
kaze-0.2.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx
kaze-0.1.0 stubs/inertia-react-ts/app/javascript/Components/DangerButton.tsx