Column Triple icon
Used to represent content columns. The Column Triple 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 Triple 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 { ColumnTriple24Regular, ColumnTriple24Filled } from "@fluentui/react-icons";
export function Example() {
return <ColumnTriple24Regular aria-label="Column Triple" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_column_triple_24_regular.svg" width="24" height="24" alt="Column Triple"> 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="M4.5 21C3.11929 21 2 19.8807 2 18.5V5.5C2 4.11929 3.11929 3 4.5 3H5.5C6.88071 3 8 4.11929 8 5.5L8 18.5C8 19.8807 6.88071 21 5.5 21H4.5ZM3.5 18.5C3.5 19.0523 3.94772 19.5 4.5 19.5H5.5C6.05229 19.5 6.5 19.0523 6.5 18.5L6.5 5.5C6.5 4.94771 6.05228 4.5 5.5 4.5H4.5C3.94772 4.5 3.5 4.94771 3.5 5.5L3.5 18.5ZM11.5 21C10.1193 21 9 19.8807 9 18.5L9 5.5C9 4.11929 10.1193 3 11.5 3H12.5C13.8807 3 15 4.11929 15 5.5V18.5C15 19.8807 13.8807 21 12.5 21H11.5ZM10.5 18.5C10.5 19.0523 10.9477 19.5 11.5 19.5H12.5C13.0523 19.5 13.5 19.0523 13.5 18.5V5.5C13.5 4.94771 13.0523 4.5 12.5 4.5H11.5C10.9477 4.5 10.5 4.94771 10.5 5.5V18.5ZM16 18.5C16 19.8807 17.1193 21 18.5 21H19.5C20.8807 21 22 19.8807 22 18.5V5.5C22 4.11929 20.8807 3 19.5 3H18.5C17.1193 3 16 4.11929 16 5.5L16 18.5ZM18.5 19.5C17.9477 19.5 17.5 19.0523 17.5 18.5L17.5 5.5C17.5 4.94771 17.9477 4.5 18.5 4.5H19.5C20.0523 4.5 20.5 4.94771 20.5 5.5V18.5C20.5 19.0523 20.0523 19.5 19.5 19.5H18.5Z" 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_triple_24_regular.svg";Details
| Name | Column Triple |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_column_triple_24_regular.svg |
| Filled file | ic_fluent_column_triple_24_filled.svg |
| React components | ColumnTriple24Regular, ColumnTriple24Filled |
| License | MIT (© Microsoft Corporation) |