```html <svg viewBox="0 0 10 10" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> <defs> <linearGradient id="myGradient" gradientTransform="rotate(90)"> <stop offset="0" stop-color="gold" /> <stop offset=".58" stop-color="red" /> </linearGradient> </defs> <circle cx="5" cy="5" r="4" fill="url('#myGradient')" /> </svg> ``` ```bash thread 'main' panicked at 'stop missing offset', demo/src/demos/svg.rs:839:3 ```