UNPKG

image-editor-little

Version:
11 lines (10 loc) 285 B
import * as React from 'react'; interface IProps { type: 'rect' | 'circle'; width: number; height: number; stroke?: string; strokeWidth?: number; } declare const Svg: React.ForwardRefExoticComponent<IProps & React.RefAttributes<any>>; export default Svg;