fix buttonSize type

close #8304
This commit is contained in:
ddcat1115 2017-11-24 14:46:55 +08:00
parent 6707824611
commit 0865824b61

View File

@ -35,7 +35,7 @@ function insertSpace(child: React.ReactChild, needInserted: boolean) {
export type ButtonType = 'primary' | 'ghost' | 'dashed' | 'danger';
export type ButtonShape = 'circle' | 'circle-outline';
export type ButtonSize = 'small' | 'large';
export type ButtonSize = 'small' | 'default' | 'large';
export interface ButtonProps {
type?: ButtonType;