SVG xlink:href demo

by Scott Kaye

HTML

<svg>
	<symbol id="test-thing">
		<rect x="10" y="10" width="100" height="100" fill="currentColor"/>
	</symbol>
</svg>

<svg>
	<use xlink:href="#test-thing"/>
</svg>

CSS

body {
	color: #009;
}