reactjs-tiptap-editor
Version:
A modern WYSIWYG rich text editor based on tiptap and shadcn ui for React
12 lines (11 loc) • 375 B
TypeScript
import { default as React } from 'react';
export interface ColorPickerProps {
disabled?: boolean;
colors?: string[];
children: React.ReactNode;
onChange?: (color: string | undefined) => void;
value?: string;
highlight?: boolean;
}
declare function ColorPicker(props: ColorPickerProps): import("react/jsx-runtime").JSX.Element;
export { ColorPicker };