Text Column Two Left icon
Used in general type column creation scenarios. The Text Column Two Left 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 Column Two Left 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 { TextColumnTwoLeft24Regular, TextColumnTwoLeft24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextColumnTwoLeft24Regular aria-label="Text Column Two Left" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_column_two_left_24_regular.svg" width="24" height="24" alt="Text Column Two Left"> 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="M21 5.75C21 5.33579 20.6642 5 20.25 5H10.75C10.3358 5 10 5.33579 10 5.75C10 6.16421 10.3358 6.5 10.75 6.5H20.25C20.6642 6.5 21 6.16421 21 5.75ZM8 5.75C8 5.33579 7.66421 5 7.25 5H3.75C3.33579 5 3 5.33579 3 5.75C3 6.16421 3.33579 6.5 3.75 6.5H7.25C7.66421 6.5 8 6.16421 8 5.75ZM21 9.75C21 9.33579 20.6642 9 20.25 9H10.75C10.3358 9 10 9.33579 10 9.75C10 10.1642 10.3358 10.5 10.75 10.5H20.25C20.6642 10.5 21 10.1642 21 9.75ZM8 9.75C8 9.33579 7.66421 9 7.25 9H3.75C3.33579 9 3 9.33579 3 9.75C3 10.1642 3.33579 10.5 3.75 10.5H7.25C7.66421 10.5 8 10.1642 8 9.75ZM21 13.75C21 13.3358 20.6642 13 20.25 13H10.75C10.3358 13 10 13.3358 10 13.75C10 14.1642 10.3358 14.5 10.75 14.5H20.25C20.6642 14.5 21 14.1642 21 13.75ZM8 13.75C8 13.3358 7.66421 13 7.25 13H3.75C3.33579 13 3 13.3358 3 13.75C3 14.1642 3.33579 14.5 3.75 14.5H7.25C7.66421 14.5 8 14.1642 8 13.75ZM21 17.75C21 17.3358 20.6642 17 20.25 17H10.75C10.3358 17 10 17.3358 10 17.75C10 18.1642 10.3358 18.5 10.75 18.5H20.25C20.6642 18.5 21 18.1642 21 17.75ZM8 17.75C8 17.3358 7.66421 17 7.25 17H3.75C3.33579 17 3 17.3358 3 17.75C3 18.1642 3.33579 18.5 3.75 18.5H7.25C7.66421 18.5 8 18.1642 8 17.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_column_two_left_24_regular.svg";Details
| Name | Text Column Two Left |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_column_two_left_24_regular.svg |
| Filled file | ic_fluent_text_column_two_left_24_filled.svg |
| React components | TextColumnTwoLeft24Regular, TextColumnTwoLeft24Filled |
| License | MIT (© Microsoft Corporation) |