@textbus/xnote
Version:
A high-performance rich text editor that supports multiplayer online collaboration.
12 lines (11 loc) • 520 B
TypeScript
import { Props } from '@viewfly/core';
import { Slot } from '@textbus/core';
import { HTMLAttributes } from '@viewfly/platform-browser';
import { DropdownProps } from '../../components/dropdown/dropdown';
export interface TextColorToolProps extends Props {
abreast?: DropdownProps['abreast'];
style?: HTMLAttributes<HTMLElement>['style'];
slot?: Slot | null;
applyBefore?(): void;
}
export declare function TextColorTool(props: TextColorToolProps): () => import("@viewfly/core/jsx-runtime").JSX.Element;