UNPKG

react-blueprint-svg

Version:

Pannable, zoomable SVG with menu of displaying options inspired by maker.js.

10 lines (9 loc) 300 B
import * as React from 'react'; import * as makerjs from 'makerjs'; import { OptionState } from './store/state'; export declare type Props = { model: makerjs.IModel | string; options?: Partial<OptionState>; }; declare const Main: React.FunctionComponent<Props>; export default Main;