Stack Vertical icon
Used to represent a card view versus other UI layouts. The Stack Vertical 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 Stack Vertical 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 { StackVertical24Regular, StackVertical24Filled } from "@fluentui/react-icons";
export function Example() {
return <StackVertical24Regular aria-label="Stack Vertical" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_stack_vertical_24_regular.svg" width="24" height="24" alt="Stack Vertical"> 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="M3 6.25C3 4.45507 4.45507 3 6.25 3H17.75C19.5449 3 21 4.45507 21 6.25V20.25C21 20.6642 20.6642 21 20.25 21C19.8358 21 19.5 20.6642 19.5 20.25V16.25C19.5 15.2835 18.7165 14.5 17.75 14.5H6.25C5.2835 14.5 4.5 15.2835 4.5 16.25V20.25C4.5 20.6642 4.16421 21 3.75 21C3.33579 21 3 20.6642 3 20.25V6.25ZM4.5 13.5109C5.00515 13.1875 5.60568 13 6.25 13H17.75C18.3943 13 18.9949 13.1875 19.5 13.5109V11.25C19.5 10.2835 18.7165 9.5 17.75 9.5H6.25C5.2835 9.5 4.5 10.2835 4.5 11.25V13.5109ZM19.5 6.25C19.5 5.2835 18.7165 4.5 17.75 4.5H6.25C5.2835 4.5 4.5 5.2835 4.5 6.25V8.51091C5.00515 8.1875 5.60568 8 6.25 8H17.75C18.3943 8 18.9949 8.1875 19.5 8.51091V6.25Z" 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/stack_vertical_24_regular.svg";Details
| Name | Stack Vertical |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_stack_vertical_24_regular.svg |
| Filled file | ic_fluent_stack_vertical_24_filled.svg |
| React components | StackVertical24Regular, StackVertical24Filled |
| License | MIT (© Microsoft Corporation) |