Update shape.tsx

This commit is contained in:
Steve Ruiz 2021-07-01 15:05:54 +01:00
parent 60414a4919
commit 52ed678a73

View file

@ -8,11 +8,10 @@ import useShapeEvents from 'hooks/useShapeEvents'
import vec from 'utils/vec'
import { getShapeStyle } from 'state/shape-styles'
import useShapeDef from 'hooks/useShape'
import { BooleanArraySupportOption } from 'prettier'
interface ShapeProps {
id: string
isSelecting: BooleanArraySupportOption
isSelecting: boolean
}
function Shape({ id, isSelecting }: ShapeProps): JSX.Element {