scrivly
Version:
A powerful, feature-rich rich text editor for React with TypeScript support
10 lines • 327 B
TypeScript
import { CustomIcon } from "./icons";
import React from "react";
import type { ToolbarProps } from "../types/editor";
export type ToolbarConfig = {
icon: React.ComponentType<CustomIcon>;
label: string;
shortcut?: string;
};
export declare const Toolbar: React.FC<ToolbarProps>;
//# sourceMappingURL=Toolbar.d.ts.map