ant-design/components/button/index.ts
Muhammad Sohaib Raza 5191b85b96
refactor: button (#40077)
* 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>
2023-01-11 10:32:05 +08:00

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;