actions-exchange
Buttons
BiDi Comparison (LTR vs RTL)
LTR (Left-to-Right)
RTL (Right-to-Left)
Usage
This icon uses logical naming (start/end instead of left/right) and is designed for bidirectional support. See the usage examples below for implementation details.
Icon Identifier
actions-exchangeMarkup
⚠ BiDi NOT supported - Raw SVG cannot be flipped. Use inline or sprite methods for BiDi support.
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill="currentColor"><path d="M10 9H2.914l1.622-1.621-.708-.707L1 9.5l2.828 2.828.708-.707L2.914 10H10zM12.172 3.672l-.708.707L13.086 6H6v1h7.086l-1.622 1.621.708.707L15 6.5z"/></g></svg>Inline
✓ BiDi supported - Icon will flip in RTL mode when using the icon-bidi class
<span class="icon icon-size-small icon-state-default icon-bidi">
<span class="icon-markup">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g fill="currentColor"><path d="M10 9H2.914l1.622-1.621-.708-.707L1 9.5l2.828 2.828.708-.707L2.914 10H10zM12.172 3.672l-.708.707L13.086 6H6v1h7.086l-1.622 1.621.708.707L15 6.5z"/></g></svg>
</span>
</span>Sprite
✓ BiDi supported - Icon will flip in RTL mode when using the icon-bidi class
<span class="icon icon-size-small icon-state-default icon-bidi">
<span class="icon-markup">
<svg role="img"><use xlink:href="dist/sprites/actions.svg?v=1787092859629#actions-exchange" /></svg>
</span>
</span>TYPO3 ViewHelper
✓ BiDi supported
<core:icon identifier="actions-exchange" size="small" />TYPO3 Web Component
✓ BiDi supported
<typo3-backend-icon identifier="actions-exchange" size="small"></typo3-backend-icon>CSS Background Image
⚠ BiDi NOT supported - Background images cannot be flipped with CSS. Use inline or sprite methods for BiDi support.
.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='M10 9H2.914l1.622-1.621-.708-.707L1 9.5l2.828 2.828.708-.707L2.914 10H10zM12.172 3.672l-.708.707L13.086 6H6v1h7.086l-1.622 1.621.708.707L15 6.5z'/%3e%3c/g%3e%3c/svg%3e");
}Sass Background Variable
⚠ BiDi NOT supported - Background images cannot be flipped with CSS. Use inline or sprite methods for BiDi support.
@import "@typo3/icons/dist/icons.scss";
@import "@typo3/icons/dist/scss/icons-variables-actions.scss";
.myclass {
background-size: 1em 1em;
background-image: $icon-actions-exchange;
}Download