-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Open
Labels
Description
Not sure if this is a bug or if I've implemented incorrectly, but stroke on text is not behaving quite like I'd expect.
Instead of outlining the text with a stroke it seems to be outlining segments of each character.

<Svg
height="80"
width="500"
>
<Text
fill="none"
stroke="red"
strokeWidth="1"
fontSize="45"
fontWeight="bold"
x="10%"
y="100%"
>
STROKED TEXT
</Text>
</Svg>
Am I missing something to make this do a normal text stroke?