Text Column One Semi Narrow icon
Used in general type column creation scenarios. The Text Column One Semi Narrow 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 One Semi Narrow 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 { TextColumnOneSemiNarrow24Regular, TextColumnOneSemiNarrow24Filled } from "@fluentui/react-icons";
export function Example() {
return <TextColumnOneSemiNarrow24Regular aria-label="Text Column One Semi Narrow" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_text_column_one_semi_narrow_24_regular.svg" width="24" height="24" alt="Text Column One Semi Narrow"> 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="M7.75 5C7.33579 5 7 5.33579 7 5.75C7 6.16421 7.33579 6.5 7.75 6.5H16.25C16.6642 6.5 17 6.16421 17 5.75C17 5.33579 16.6642 5 16.25 5H7.75ZM7.75 9C7.33579 9 7 9.33579 7 9.75C7 10.1642 7.33579 10.5 7.75 10.5H16.25C16.6642 10.5 17 10.1642 17 9.75C17 9.33579 16.6642 9 16.25 9H7.75ZM7 13.75C7 13.3358 7.33579 13 7.75 13H16.25C16.6642 13 17 13.3358 17 13.75C17 14.1642 16.6642 14.5 16.25 14.5H7.75C7.33579 14.5 7 14.1642 7 13.75ZM7.75 17C7.33579 17 7 17.3358 7 17.75C7 18.1642 7.33579 18.5 7.75 18.5H16.25C16.6642 18.5 17 18.1642 17 17.75C17 17.3358 16.6642 17 16.25 17H7.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_one_semi_narrow_24_regular.svg";Details
| Name | Text Column One Semi Narrow |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_text_column_one_semi_narrow_24_regular.svg |
| Filled file | ic_fluent_text_column_one_semi_narrow_24_filled.svg |
| React components | TextColumnOneSemiNarrow24Regular, TextColumnOneSemiNarrow24Filled |
| License | MIT (© Microsoft Corporation) |