html,body,svg { height:100% }
HTML
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/SVG/Element/use -->
<svg viewBox="0 0 30 10">
<circle id="myCircle" cx="5" cy="5" r="4"/>
<use href="#myCircle" x="10" fill="blue"/>
</svg>
<svg viewBox="0 0 30 10">
<use href="#myCircle" x="20" fill="white" stroke="blue"/>
</svg>
CSS
html,body,svg { height:100px }