UNPKG

image-editor-little

Version:
15 lines (14 loc) 318 B
import * as React from 'react'; interface IProps { isHideColor?: boolean; info: { size: number; color: string; }; onChange: ({ size, color }: { size?: number; color?: string; }) => void; } declare const Stroke: React.FC<IProps>; export default Stroke;