import useHandleEvents from 'hooks/useBoundsEvents' import styled from 'styles' import { Bounds } from 'types' export default function Rotate({ bounds, size, }: { bounds: Bounds size: number }): JSX.Element { const events = useHandleEvents('rotate') return ( ) } const StyledRotateHandle = styled('circle', { stroke: '$bounds', fill: '#fff', zStrokeWidth: 1.5, cursor: 'grab', })