mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 03:29:59 +08:00
5191b85b96
* fix: type updated from any, and comments removed #15930 * refactor: removed unnecessary comments, created helper for button * fix: cleanupTimer * fix: import fixed * Update components/button/button.tsx Co-authored-by: afc163 <afc163@gmail.com> * Update components/dropdown/dropdown-button.tsx Co-authored-by: afc163 <afc163@gmail.com> Co-authored-by: afc163 <afc163@gmail.com>
10 lines
269 B
TypeScript
10 lines
269 B
TypeScript
import Button from './button';
|
|
|
|
export type { SizeType as ButtonSize } from '../config-provider/SizeContext';
|
|
export type { ButtonProps } from './button';
|
|
export type { ButtonGroupProps } from './button-group';
|
|
|
|
export * from './buttonHelpers';
|
|
|
|
export default Button;
|