import React from 'react'; import { Zone } from './styled'; type Props = { appearance: ToolType | FormType | ''; x: number; y: number; }; const Cursor: React.FC = ({ appearance, x, y }: Props) => { return (

Click to insert

); }; export default Cursor;