UNPKG

editextock

Version:
9 lines (8 loc) 325 B
type ColorModalProps = { anchorEl: HTMLButtonElement | null; handleClose: () => void; handleColor: (color?: any | null) => void; colorValue: string; }; export default function ColorModal({ anchorEl, colorValue, handleClose, handleColor }: ColorModalProps): import("react/jsx-runtime").JSX.Element; export {};