rfa
Version:
**React Form Architect** is an ultimate solution for creating and rendering forms in React. Its main focus is to provide users with a tool to define, render and share a form in a browser.
11 lines (10 loc) • 397 B
TypeScript
/// <reference types="react" />
import { IconProps } from '@material-ui/core';
declare type Props = {
onClick: () => void;
icon: 'add' | 'remove' | 'expandMore' | 'expandLess';
corner: 'topRight' | 'bottomLeft' | 'bottomRight';
color: IconProps['color'];
};
export declare const TreeNodeCornerButton: ({ corner, icon, color, onClick, }: Props) => JSX.Element;
export {};