Sign in
fuchsia
/
third_party
/
dart-pkg
/
main
/
.
/
flutter_svg
/
example
/
assets
/
simple
/
use_circles_def.svg
blob: 3df93330803afcad6d56b88a14638e7bcce06b4c [
file
]
<svg
viewBox
=
"0 0 30 10"
xmlns
=
"http://www.w3.org/2000/svg"
>
<defs>
<circle
id
=
"myCircle"
cx
=
"5"
cy
=
"5"
r
=
"4"
/>
</defs>
<use
/>
<use
href
=
"#myCircle"
x
=
"10"
fill
=
"blue"
/>
<use
href
=
"#myCircle"
x
=
"20"
fill
=
"white"
stroke
=
"blue"
/>
</svg>