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