Text Arrow Down Right Column icon
Used to represent brainstorming scenearios. The Text Arrow Down Right Column 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 Arrow Down Right Column 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 { TextArrowDownRightColumn24Regular, TextArrowDownRightColumn24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextArrowDownRightColumn24Regular aria-label="Text Arrow Down Right Column" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_arrow_down_right_column_24_regular.svg" width="24" height="24" alt="Text Arrow Down Right Column"> 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="M2 2.75C2 2.33579 2.33579 2 2.75 2H11.25C11.6642 2 12 2.33579 12 2.75C12 3.16421 11.6642 3.5 11.25 3.5H2.75C2.33579 3.5 2 3.16421 2 2.75ZM2 6.75C2 6.33579 2.33579 6 2.75 6H9.25C9.66421 6 10 6.33579 10 6.75C10 7.16421 9.66421 7.5 9.25 7.5H2.75C2.33579 7.5 2 7.16421 2 6.75ZM15.25 4C14.0074 4 13 5.00736 13 6.25V19.75C13 20.9926 14.0074 22 15.25 22H18.75C19.9926 22 21 20.9926 21 19.75V6.25C21 5.00736 19.9926 4 18.75 4H15.25ZM14.5 6.25C14.5 5.83579 14.8358 5.5 15.25 5.5H18.75C19.1642 5.5 19.5 5.83579 19.5 6.25V9.5H14.5V6.25ZM14.5 11H19.5V15H14.5V11ZM19.5 16.5V19.75C19.5 20.1642 19.1642 20.5 18.75 20.5H15.25C14.8358 20.5 14.5 20.1642 14.5 19.75V16.5H19.5ZM4.5 10.75C4.5 10.3358 4.16421 10 3.75 10C3.33579 10 3 10.3358 3 10.75V13.75C3 15.2688 4.23122 16.5 5.75 16.5H8.43934L7.21967 17.7197C6.92678 18.0126 6.92678 18.4874 7.21967 18.7803C7.51256 19.0732 7.98744 19.0732 8.28033 18.7803L10.7803 16.2803C11.0732 15.9874 11.0732 15.5126 10.7803 15.2197L8.28033 12.7197C7.98744 12.4268 7.51256 12.4268 7.21967 12.7197C6.92678 13.0126 6.92678 13.4874 7.21967 13.7803L8.43934 15H5.75C5.05964 15 4.5 14.4404 4.5 13.75V10.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_arrow_down_right_column_24_regular.svg";Details
| Name | Text Arrow Down Right Column |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_arrow_down_right_column_24_regular.svg |
| Filled file | ic_fluent_text_arrow_down_right_column_24_filled.svg |
| React components | TextArrowDownRightColumn24Regular, TextArrowDownRightColumn24Filled |
| License | MIT (© Microsoft Corporation) |