Text Direction Rotate 90 Right icon
Used to choose text direction in editor scenarios. Contains directional, rotation and locale specific variants. The Text Direction Rotate 90 Right icon is part of Microsoft's Fluent UI System Icons, available here in filled and regular (outlined) styles on a 24 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Use the Text Direction Rotate 90 Right icon in React
Install Microsoft's @fluentui/react-icons package, then import the component. Icons inherit the current text color, and you can size them with CSS.
npm install @fluentui/react-icons
import { TextDirectionRotate90Right24Regular, TextDirectionRotate90Right24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextDirectionRotate90Right24Regular aria-label="Text Direction Rotate 90 Right" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_direction_rotate_90_right_24_regular.svg" width="24" height="24" alt="Text Direction Rotate 90 Right"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6.75 3C6.33579 3 6 3.33579 6 3.75V18.4393L5.28033 17.7197C4.98744 17.4268 4.51256 17.4268 4.21967 17.7197C3.92678 18.0126 3.92678 18.4874 4.21967 18.7803L6.21967 20.7803C6.51256 21.0732 6.98744 21.0732 7.28033 20.7803L9.28033 18.7803C9.57322 18.4874 9.57322 18.0126 9.28033 17.7197C8.98744 17.4268 8.51256 17.4268 8.21967 17.7197L7.5 18.4393V3.75C7.5 3.33579 7.16421 3 6.75 3ZM11.0306 3.05281L20.5257 6.80643C21.1212 7.04181 21.1559 7.84893 20.6302 8.15113L20.5251 8.20161L11.0246 11.948C10.6393 12.1 10.2038 11.9108 10.0518 11.5254C9.91251 11.1722 10.0599 10.7768 10.3822 10.5963L10.4744 10.5526L13 9.55629V5.44329L10.4791 4.44777C10.126 4.30818 9.93792 3.93042 10.0263 3.57173L10.0574 3.47457C10.197 3.12146 10.5747 2.93337 10.9334 3.02177L11.0306 3.05281ZM18.2077 7.50304L14.5 6.03629V8.96429L18.2077 7.50304ZM15.5 12.75C15.5 12.3358 15.8358 12 16.25 12C16.6642 12 17 12.3358 17 12.75V18.4393L17.7197 17.7197C18.0126 17.4268 18.4874 17.4268 18.7803 17.7197C19.0732 18.0126 19.0732 18.4874 18.7803 18.7803L16.7803 20.7803C16.4874 21.0732 16.0126 21.0732 15.7197 20.7803L13.7197 18.7803C13.4268 18.4874 13.4268 18.0126 13.7197 17.7197C14.0126 17.4268 14.4874 17.4268 14.7803 17.7197L15.5 18.4393V12.75Z" fill="currentColor"/></svg>Use it from the SVG package
Microsoft's @fluentui/svg-icons package contains the raw SVG files, which works well with bundlers that import SVGs:
npm install @fluentui/svg-icons
import icon from "@fluentui/svg-icons/icons/text_direction_rotate_90_right_24_regular.svg";Details
| Name | Text Direction Rotate 90 Right |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_direction_rotate_90_right_24_regular.svg |
| Filled file | ic_fluent_text_direction_rotate_90_right_24_filled.svg |
| React components | TextDirectionRotate90Right24Regular, TextDirectionRotate90Right24Filled |
| License | MIT (© Microsoft Corporation) |