Browse Source

fix(types): button type prop missing link (#2856)

pull/2783/head
John60676 4 years ago committed by GitHub
parent
commit
be480a89c0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      types/button/button.d.ts

2
types/button/button.d.ts vendored

@ -12,7 +12,7 @@ export interface ButtonProps extends AntdProps {
* @default 'default'
* @type string
*/
type?: 'primary' | 'danger' | 'dashed' | 'ghost' | 'default';
type?: 'primary' | 'danger' | 'dashed' | 'ghost' | 'default' | 'link';
/**
* set the original html type of button

Loading…
Cancel
Save