actions-canvas
Introduced in v2.3.0
Available in TYPO3
11.5
Buttons
Button Label Button Label
Button Label Button Label
Usage
Markup
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill="currentColor"><path d="M14.75 9H14V2.5a.5.5 0 0 0-.5-.5H9.286l-.234-.819A.25.25 0 0 0 8.811 1H7.189a.249.249 0 0 0-.24.181L6.714 2H2.5a.5.5 0 0 0-.5.5V9h-.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.607L3 15h2l.9-3h4.2l.9 3h2l-.857-3h2.607a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25zM3 3h10v6H3V3zm11 8H2v-1h12v1z"/><path d="M4 4h1v1H4zM4 6h1v2H4z"/></g></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 16 16"><g fill="currentColor"><path d="M14.75 9H14V2.5a.5.5 0 0 0-.5-.5H9.286l-.234-.819A.25.25 0 0 0 8.811 1H7.189a.249.249 0 0 0-.24.181L6.714 2H2.5a.5.5 0 0 0-.5.5V9h-.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.607L3 15h2l.9-3h4.2l.9 3h2l-.857-3h2.607a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25zM3 3h10v6H3V3zm11 8H2v-1h12v1z"/><path d="M4 4h1v1H4zM4 6h1v2H4z"/></g></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/actions.svg#actions-canvas" /></svg>
</span>
</span>
TYPO3 ViewHelper
<core:icon identifier="actions-canvas" 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 16 16'%3e%3cg fill='%23fff'%3e%3cpath d='M14.75 9H14V2.5a.5.5 0 0 0-.5-.5H9.286l-.234-.819A.25.25 0 0 0 8.811 1H7.189a.249.249 0 0 0-.24.181L6.714 2H2.5a.5.5 0 0 0-.5.5V9h-.75a.25.25 0 0 0-.25.25v2.5c0 .138.112.25.25.25h2.607L3 15h2l.9-3h4.2l.9 3h2l-.857-3h2.607a.25.25 0 0 0 .25-.25v-2.5a.25.25 0 0 0-.25-.25zM3 3h10v6H3V3zm11 8H2v-1h12v1z'/%3e%3cpath d='M4 4h1v1H4zM4 6h1v2H4z'/%3e%3c/g%3e%3c/svg%3e");
}
Sass Background Variable
@import "@typo3/icons/dist/icons.scss";
@import "@typo3/icons/dist/scss/icons-variables-actions.scss";
.myclass {
background-size: 1em 1em;
background-image: $icon-actions-canvas;
}