Updated to v1.7.8

This commit is contained in:
Henry Whitaker
2020-07-20 17:20:17 +01:00
parent 5d28876b2b
commit 1e25197063
1425 changed files with 48003 additions and 13327 deletions

View File

@@ -1,12 +1,13 @@
import React from 'react';
import { BsPrefixPropsWithChildren, BsPrefixRefForwardingComponent } from './helpers';
import { ButtonVariant } from './types';
export declare type ButtonType = 'button' | 'reset' | 'submit' | string;
export interface ButtonProps extends React.HTMLAttributes<HTMLElement>, BsPrefixPropsWithChildren {
active?: boolean;
block?: boolean;
variant?: ButtonVariant;
size?: 'sm' | 'lg';
type?: 'button' | 'reset' | 'submit' | string;
type?: ButtonType;
href?: string;
disabled?: boolean;
target?: any;