-
Notifications
You must be signed in to change notification settings - Fork 564
Closed
Description
As I understand there's still no support for parsing SVG gradients, right? I get a white circle instead.
This would be the expected result.
<svg width="109" height="109" viewBox="0 0 109 109" fill="none" xmlns="http://www.w3.org/2000/svg"> <circle cx="54.5" cy="54.5" r="54.5" fill="url(#paint0_linear)"/> <defs> <linearGradient id="paint0_linear" x1="54.5" y1="0" x2="54.5" y2="109" gradientUnits="userSpaceOnUse"> <stop stop-color="#F01A1A"/> <stop offset="1" stop-color="#C4C4C4" stop-opacity="0"/> </linearGradient> </defs> </svg>
