import React from 'react' import styled from 'styles' export default function Cursor({ color = 'dodgerblue', point = [0, 0], }: { color?: string point: number[] }): JSX.Element { const transform = `translate(${point[0] - 12} ${point[1] - 10})` return ( ) } const StyledCursor = styled('g', { position: 'absolute', zIndex: 1000, top: 0, left: 0, })