UNPKG

pm-react-text-editor

Version:

A customizable and lightweight rich-text editor for React, built with hooks and modern styling. Supports common formatting tools like bold, italic, lists, headings, links, and more.

9 lines (8 loc) 301 B
import React from 'react'; interface ColorPickerProps { onColorSelect: (color: string) => void; icon: React.ReactNode; tooltip: string; } declare function ColorPicker({ onColorSelect, icon, tooltip }: ColorPickerProps): import("react/jsx-runtime").JSX.Element; export default ColorPicker;