editextock
Version:
This is a Text Editor.
9 lines (8 loc) • 325 B
TypeScript
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 {};