import React from "react"; import { color, ColorInput } from "./color.js"; import styled from "@emotion/styled"; type RectProps = React.SVGProps<"rect">; export interface CursorProps { height: RectProps["height"]; width: RectProps["height"]; x?: RectProps["x"]; y?: RectProps["y"]; fill: ColorInput; } export const Cursor: React.FunctionComponent = props => { return ( ); }; const StyledCursor = styled.rect``;