actions-house
Introduced in v2.0.0
Available in TYPO3
10.4 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="M9.071 10v3h-2v-3h2m-1-8.25L1 8.821l.707.707L2 9.235V14h12V9.093l.435.435.707-.707-2.135-2.135V3.427h-2v1.259L8.071 1.75zM3 13V8.235l5.071-5.071L13 8.093V13h-2.929V9h-4v4H3z"/></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="M9.071 10v3h-2v-3h2m-1-8.25L1 8.821l.707.707L2 9.235V14h12V9.093l.435.435.707-.707-2.135-2.135V3.427h-2v1.259L8.071 1.75zM3 13V8.235l5.071-5.071L13 8.093V13h-2.929V9h-4v4H3z"/></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-house" /></svg>
</span>
</span>
TYPO3 ViewHelper
<core:icon identifier="actions-house" 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='M9.071 10v3h-2v-3h2m-1-8.25L1 8.821l.707.707L2 9.235V14h12V9.093l.435.435.707-.707-2.135-2.135V3.427h-2v1.259L8.071 1.75zM3 13V8.235l5.071-5.071L13 8.093V13h-2.929V9h-4v4H3z'/%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-house;
}