UNPKG

collaborative-ui

Version:

React component library for building real-time collaborative editing applications.

12 lines (11 loc) 393 B
import { type IButtonProps } from 'nice-ui/lib/2-inline-block/Button'; import * as React from 'react'; export interface CreateButtonProps extends IButtonProps { primary?: boolean; fill?: boolean; icon?: React.ReactElement; loading?: boolean; onClick: () => void; children?: React.ReactNode | undefined; } export declare const CreateButton: React.FC<CreateButtonProps>;