module-cshmanual
Introduced in v1.0.0
Available in TYPO3
7.6 8.6 9.5 10.4 11.5
Usage
Markup
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="#E49139" d="M0 0h64v64H0z"/><path fill="#FFF" d="M45 50H19c-.6 0-1-.4-1-1V15c0-.6.4-1 1-1h26c.6 0 1 .4 1 1v34c0 .6-.4 1-1 1z"/><path fill="#E49139" d="M20 16h2v32h-2zM26 18h16v2H26z"/></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"><path fill="#E49139" d="M0 0h64v64H0z"/><path fill="#FFF" d="M45 50H19c-.6 0-1-.4-1-1V15c0-.6.4-1 1-1h26c.6 0 1 .4 1 1v34c0 .6-.4 1-1 1z"/><path fill="#E49139" d="M20 16h2v32h-2zM26 18h16v2H26z"/></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-cshmanual" /></svg>
</span>
</span>
TYPO3 ViewHelper
<core:icon identifier="module-cshmanual" 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%3cpath fill='%23E49139' d='M0 0h64v64H0z'/%3e%3cpath fill='%23FFF' d='M45 50H19c-.6 0-1-.4-1-1V15c0-.6.4-1 1-1h26c.6 0 1 .4 1 1v34c0 .6-.4 1-1 1z'/%3e%3cpath fill='%23E49139' d='M20 16h2v32h-2zM26 18h16v2H26z'/%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-cshmanual;
}