UNPKG

and-design-components-library

Version:

Library of reusable React components based on AND Digital design system.

7 lines (6 loc) 223 B
import { ButtonHTMLAttributes } from 'react'; declare type BaseButtonProps = { disabled?: boolean; }; export declare type ButtonProps<T = ButtonHTMLAttributes<HTMLButtonElement>> = BaseButtonProps & T; export {};