import React, { FC } from 'react'; import type { TCanvas, TGestureControl } from '../../types'; import GestureHandler from './gesture-responder'; import Canvas from '../canvas'; export type IDrawControl = TGestureControl & TCanvas; const DrawControl: FC = ({ path, widthLine, colorLine, containerSize, fillColorCanvas, onEndTouchEvents, onStartTouchEvents, onChangeTouchEvents, ...rest }) => { return ( <> ); }; export default DrawControl;