module-urls
Introduced in v1.6.0
Available in TYPO3
9.5 10.4 11.5
Usage
Markup
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect width="64" height="64" fill="#69bb7d" rx="0" ry="0"/><path fill="#FFF" d="M36 42v4h10V36H36v4h-8V26h8v4h10V20H36v4H26v8H16v2h10v8h10zm2-20h6v6h-6v-6zm0 16h6v6h-6v-6z"/></svg>
Inline
<span class="icon icon-size-small icon-state-default">
<span class="icon-markup">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><rect width="64" height="64" fill="#69bb7d" rx="0" ry="0"/><path fill="#FFF" d="M36 42v4h10V36H36v4h-8V26h8v4h10V20H36v4H26v8H16v2h10v8h10zm2-20h6v6h-6v-6zm0 16h6v6h-6v-6z"/></svg>
</span>
</span>
Sprite
<span class="icon icon-size-small icon-state-default">
<span class="icon-markup">
<svg role="img"><use xlink:href="dist/sprites/module.svg#module-urls" /></svg>
</span>
</span>
TYPO3 ViewHelper
<core:icon identifier="module-urls" size="small" />
CSS Background Image
.myclass {
background-size: 1em 1em;
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3e%3crect width='64' height='64' fill='%2369bb7d' rx='0' ry='0'/%3e%3cpath fill='%23FFF' d='M36 42v4h10V36H36v4h-8V26h8v4h10V20H36v4H26v8H16v2h10v8h10zm2-20h6v6h-6v-6zm0 16h6v6h-6v-6z'/%3e%3c/svg%3e");
}
Sass Background Variable
@import "@typo3/icons/dist/icons.scss";
@import "@typo3/icons/dist/scss/icons-variables-module.scss";
.myclass {
background-size: 1em 1em;
background-image: $icon-module-urls;
}