7 lines
266 B
TypeScript
7 lines
266 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;
|