@chief-editor/ui
Version:
UI Component for chief editor
10 lines (9 loc) • 393 B
TypeScript
import { FC } from 'react';
import { IButtonGroupProps } from './Group';
import { ButtonType, IButtonProps } from './Button';
import { ICheckableButtonProps } from './CheckableButton';
export declare const Button: FC<IButtonProps> & {
Group: FC<IButtonGroupProps>;
Checkable: FC<ICheckableButtonProps>;
};
export { IButtonProps, ButtonType, IButtonGroupProps, ICheckableButtonProps };