UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

15 lines 470 B
import './style.less'; import './icon/style.less'; import { Button as InternalButton } from './button'; import { IconButton } from './icon/iconButton'; export type { ButtonProps } from './button'; export type { IconButtonProps } from './icon/iconButton'; type CombinedButtonType = typeof InternalButton & { /** * @deprecated */ Icon: typeof IconButton; }; declare const Button: CombinedButtonType; export { Button }; //# sourceMappingURL=index.d.ts.map