UNPKG

@harvest-profit/npk

Version:
14 lines (10 loc) 350 B
import ButtonComponent from './Button'; import ButtonGroup from './ButtonGroup'; type Button = typeof ButtonComponent & { Group: typeof ButtonGroup; }; const Button = ButtonComponent as Button; Button.Group = ButtonGroup; export default Button; export type { ButtonProps } from './Button'; export type { ButtonGroupProps } from './ButtonGroup';