UNPKG

react-fabric-canvas-designer

Version:

A React-based wrapper for Fabric.js to create interactive and customizable canvas-based designs. This library provides tools for drawing, editing, and managing objects on a canvas with React-friendly APIs.

12 lines 353 B
type optionType = { value: string; displayValue: string; }; type prop = { value: optionType; onChange: (selected: optionType) => void; options: optionType[]; }; declare const InputSelect: ({ value, onChange, options }: prop) => import("react/jsx-runtime").JSX.Element; export default InputSelect; //# sourceMappingURL=Select.d.ts.map