Column icon
Used to represent content columns. The 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 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 { Column24Regular, Column24Filled } from "@fluentui/react-icons";
export function Example() {
return <Column24Regular aria-label="Column" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_column_24_regular.svg" width="24" height="24" alt="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.5 3.75C2.5 3.33579 2.83579 3 3.25 3H3.75C5.26878 3 6.5 4.23122 6.5 5.75V18.25C6.5 19.7688 5.26878 21 3.75 21H3.25C2.83579 21 2.5 20.6642 2.5 20.25C2.5 19.8358 2.83579 19.5 3.25 19.5H3.75C4.44036 19.5 5 18.9404 5 18.25V5.75C5 5.05964 4.44036 4.5 3.75 4.5H3.25C2.83579 4.5 2.5 4.16421 2.5 3.75ZM8 5.75C8 4.23122 9.23122 3 10.75 3H13.25C14.7688 3 16 4.23122 16 5.75V18.25C16 19.7688 14.7688 21 13.25 21H10.75C9.23122 21 8 19.7688 8 18.25V5.75ZM10.75 4.5C10.0596 4.5 9.5 5.05964 9.5 5.75V18.25C9.5 18.9404 10.0596 19.5 10.75 19.5H13.25C13.9404 19.5 14.5 18.9404 14.5 18.25V5.75C14.5 5.05964 13.9404 4.5 13.25 4.5H10.75ZM20.75 3C21.1642 3 21.5 3.33579 21.5 3.75C21.5 4.16421 21.1642 4.5 20.75 4.5H20.25C19.5596 4.5 19 5.05964 19 5.75V18.25C19 18.9404 19.5596 19.5 20.25 19.5H20.75C21.1642 19.5 21.5 19.8358 21.5 20.25C21.5 20.6642 21.1642 21 20.75 21H20.25C18.7312 21 17.5 19.7688 17.5 18.25V5.75C17.5 4.23122 18.7312 3 20.25 3H20.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/column_24_regular.svg";Details
| Name | Column |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_column_24_regular.svg |
| Filled file | ic_fluent_column_24_filled.svg |
| React components | Column24Regular, Column24Filled |
| License | MIT (© Microsoft Corporation) |