Column Single icon
Used to represent a single column in UI. The Column Single icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 16 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 16 px
ic_fluent_column_single_16_regular.svg
Column Single icon in React
npm install @fluentui/react-icons
import { ColumnSingle16Regular } from "@fluentui/react-icons";
export function Example() {
return <ColumnSingle16Regular aria-label="Column Single" />;
}Use the Column Single 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 { ColumnSingle16Regular, ColumnSingle16Filled } from "@fluentui/react-icons";
export function Example() {
return <ColumnSingle16Regular aria-label="Column Single" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_column_single_16_regular.svg" width="16" height="16" alt="Column Single"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M5.75 2C4.78 2 4 2.78 4 3.75v8.5c0 .97.78 1.75 1.75 1.75h3.5c.97 0 1.75-.78 1.75-1.75v-8.5C11 2.78 10.22 2 9.25 2zM5 3.75c0-.41.34-.75.75-.75h3.5c.41 0 .75.34.75.75V5H5zM5 6h5v6.25c0 .41-.34.75-.75.75h-3.5a.75.75 0 0 1-.75-.75z"/></svg>Details
| Name | Column Single |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 16 px |
| Regular (outlined) file | ic_fluent_column_single_16_regular.svg |
| Filled file | ic_fluent_column_single_16_filled.svg |
| React (Regular) | ColumnSingle16Regular |
| React (Filled) | ColumnSingle16Filled |
| License | MIT (© Microsoft Corporation) |