files-folder
Introduced in v1.9.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"><path fill="#E8A33D" fill-rule="evenodd" d="M64 16H32l-6-6H0v44h64V16z" clip-rule="evenodd"/><path fill="#FFC857" fill-rule="evenodd" d="M0 22h26l6-6h32v38H0V22z" clip-rule="evenodd"/></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="#E8A33D" fill-rule="evenodd" d="M64 16H32l-6-6H0v44h64V16z" clip-rule="evenodd"/><path fill="#FFC857" fill-rule="evenodd" d="M0 22h26l6-6h32v38H0V22z" clip-rule="evenodd"/></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/files.svg#files-folder" /></svg>
</span>
</span>
TYPO3 ViewHelper
<core:icon identifier="files-folder" 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='%23E8A33D' fill-rule='evenodd' d='M64 16H32l-6-6H0v44h64V16z' clip-rule='evenodd'/%3e%3cpath fill='%23FFC857' fill-rule='evenodd' d='M0 22h26l6-6h32v38H0V22z' clip-rule='evenodd'/%3e%3c/svg%3e");
}
Sass Background Variable
@import "@typo3/icons/dist/icons.scss";
@import "@typo3/icons/dist/scss/icons-variables-files.scss";
.myclass {
background-size: 1em 1em;
background-image: $icon-files-folder;
}