Align Center Vertical icon
Used to align content. The Align Center 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 Align Center 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 { AlignCenterVertical24Regular, AlignCenterVertical24Filled } from "@fluentui/react-icons";
export function Example() {
return <AlignCenterVertical24Regular aria-label="Align Center Vertical" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_align_center_vertical_24_regular.svg" width="24" height="24" alt="Align Center 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="M11.25 21.25V20H8.75C7.50736 20 6.5 18.9926 6.5 17.75V15.25C6.5 14.0074 7.50736 13 8.75 13H11.25V11H6.75C5.50736 11 4.5 9.99264 4.5 8.75V6.25C4.5 5.00736 5.50736 4 6.75 4H11.25V2.75C11.25 2.33579 11.5858 2 12 2C12.4142 2 12.75 2.33579 12.75 2.75V4H17.25C18.4926 4 19.5 5.00736 19.5 6.25V8.75C19.5 9.99264 18.4926 11 17.25 11H12.75V13H15.25C16.4926 13 17.5 14.0074 17.5 15.25V17.75C17.5 18.9926 16.4926 20 15.25 20H12.75V21.25C12.75 21.6642 12.4142 22 12 22C11.5858 22 11.25 21.6642 11.25 21.25ZM15.25 18.5C15.6642 18.5 16 18.1642 16 17.75V15.25C16 14.8358 15.6642 14.5 15.25 14.5H8.75C8.33579 14.5 8 14.8358 8 15.25V17.75C8 18.1642 8.33579 18.5 8.75 18.5H15.25ZM17.25 9.5C17.6642 9.5 18 9.16421 18 8.75V6.25C18 5.83579 17.6642 5.5 17.25 5.5H6.75C6.33579 5.5 6 5.83578 6 6.25V8.75C6 9.16421 6.33579 9.5 6.75 9.5L17.25 9.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/align_center_vertical_24_regular.svg";Details
| Name | Align Center Vertical |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_align_center_vertical_24_regular.svg |
| Filled file | ic_fluent_align_center_vertical_24_filled.svg |
| React components | AlignCenterVertical24Regular, AlignCenterVertical24Filled |
| License | MIT (© Microsoft Corporation) |