Update hovered-shape.tsx

This commit is contained in:
Steve Ruiz 2021-06-28 14:01:49 +01:00
parent 8ff8b87a9e
commit ad0aff9fea

View file

@ -27,10 +27,11 @@ function HoveredShape({ id }: { id: string }) {
}) })
return ( return (
<g transform={transform}> <StyledHoverShape
<StyledHoverShape href={'#' + id} strokeWidth={strokeWidth + 8} /> href={'#' + id}
<text>hello</text> transform={transform}
</g> strokeWidth={strokeWidth + 8}
/>
) )
} }