Usage
Icon Identifier
Markup
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path fill="currentColor" d="M41.9 13.615 13.614 41.9a2 2 0 0 0 0 2.829l5.657 5.657a2 2 0 0 0 2.829 0L50.385 22.1a2 2 0 0 0 0-2.829l-5.657-5.657a2 2 0 0 0-2.829 0ZM20.685 46.142l-2.828-2.828 16.97-16.97 2.829 2.828-16.97 16.97Zm25.456-25.456-5.657 5.657-2.828-2.828 5.657-5.657 2.828 2.828Z"/><path fill="var(--icon-color-accent, #ff8700)" d="M50 43h-3v-3a2 2 0 0 0-4 0v3h-3a2 2 0 0 0 0 4h3v3a2 2 0 0 0 4 0v-3h3a2 2 0 0 0 0-4Z"/><path fill="currentColor" d="M26.5 16H25v-1.5a2 2 0 1 0-4 0V16h-1.5a2 2 0 1 0 0 4H21v1.5a2 2 0 0 0 4 0V20h1.5a2 2 0 0 0 0-4Z" opacity=".4"/></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="currentColor" d="M41.9 13.615 13.614 41.9a2 2 0 0 0 0 2.829l5.657 5.657a2 2 0 0 0 2.829 0L50.385 22.1a2 2 0 0 0 0-2.829l-5.657-5.657a2 2 0 0 0-2.829 0ZM20.685 46.142l-2.828-2.828 16.97-16.97 2.829 2.828-16.97 16.97Zm25.456-25.456-5.657 5.657-2.828-2.828 5.657-5.657 2.828 2.828Z"/><path fill="var(--icon-color-accent, #ff8700)" d="M50 43h-3v-3a2 2 0 0 0-4 0v3h-3a2 2 0 0 0 0 4h3v3a2 2 0 0 0 4 0v-3h3a2 2 0 0 0 0-4Z"/><path fill="currentColor" d="M26.5 16H25v-1.5a2 2 0 1 0-4 0V16h-1.5a2 2 0 1 0 0 4H21v1.5a2 2 0 0 0 4 0V20h1.5a2 2 0 0 0 0-4Z" opacity=".4"/></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?v=1772004282855#module-assist" /></svg>
</span>
</span>
TYPO3 ViewHelper
<core:icon identifier="module-assist" size="small" />
TYPO3 Web Component
<typo3-backend-icon identifier="module-assist" size="small"></typo3-backend-icon>
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='%23fff' d='M41.9 13.615 13.614 41.9a2 2 0 0 0 0 2.829l5.657 5.657a2 2 0 0 0 2.829 0L50.385 22.1a2 2 0 0 0 0-2.829l-5.657-5.657a2 2 0 0 0-2.829 0ZM20.685 46.142l-2.828-2.828 16.97-16.97 2.829 2.828-16.97 16.97Zm25.456-25.456-5.657 5.657-2.828-2.828 5.657-5.657 2.828 2.828Z'/%3e%3cpath fill='var(--icon-color-accent, %23ff8700)' d='M50 43h-3v-3a2 2 0 0 0-4 0v3h-3a2 2 0 0 0 0 4h3v3a2 2 0 0 0 4 0v-3h3a2 2 0 0 0 0-4Z'/%3e%3cpath fill='%23fff' d='M26.5 16H25v-1.5a2 2 0 1 0-4 0V16h-1.5a2 2 0 1 0 0 4H21v1.5a2 2 0 0 0 4 0V20h1.5a2 2 0 0 0 0-4Z' opacity='.4'/%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-assist;
}