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 (
<g transform={transform}>
<StyledHoverShape href={'#' + id} strokeWidth={strokeWidth + 8} />
<text>hello</text>
</g>
<StyledHoverShape
href={'#' + id}
transform={transform}
strokeWidth={strokeWidth + 8}
/>
)
}