UNPKG

mfg-ui-components

Version:

React UI library with reusable components

9 lines (8 loc) 260 B
import React from "react"; import "./TextEditor.scss"; export interface Props { onClick?: any; ref?: any; } declare const TextEditor: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<HTMLDivElement>>; export default TextEditor;