Align Space Evenly Horizontal icon
Used to align content. The Align Space Evenly Horizontal 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 Space Evenly Horizontal 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 { AlignSpaceEvenlyHorizontal24Regular, AlignSpaceEvenlyHorizontal24Filled } from "@fluentui/react-icons";
export function Example() {
return <AlignSpaceEvenlyHorizontal24Regular aria-label="Align Space Evenly Horizontal" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_align_space_evenly_horizontal_24_regular.svg" width="24" height="24" alt="Align Space Evenly Horizontal"> 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.5 17.5C3.5 18.0523 3.94772 18.5 4.5 18.5H5.5C6.05229 18.5 6.5 18.0523 6.5 17.5L6.5 6.5C6.5 5.94771 6.05228 5.5 5.5 5.5H4.5C3.94772 5.5 3.5 5.94771 3.5 6.5L3.5 17.5ZM4.5 20C3.11929 20 2 18.8807 2 17.5V6.5C2 5.11929 3.11929 4 4.5 4H5.5C6.88071 4 8 5.11929 8 6.5L8 17.5C8 18.8807 6.88071 20 5.5 20H4.5ZM10.5 17.5C10.5 18.0523 10.9477 18.5 11.5 18.5H12.5C13.0523 18.5 13.5 18.0523 13.5 17.5V6.5C13.5 5.94771 13.0523 5.5 12.5 5.5H11.5C10.9477 5.5 10.5 5.94771 10.5 6.5V17.5ZM11.5 20C10.1193 20 9 18.8807 9 17.5L9 6.5C9 5.11929 10.1193 4 11.5 4H12.5C13.8807 4 15 5.11929 15 6.5V17.5C15 18.8807 13.8807 20 12.5 20H11.5ZM18.5 18.5C17.9477 18.5 17.5 18.0523 17.5 17.5L17.5 6.5C17.5 5.94771 17.9477 5.5 18.5 5.5H19.5C20.0523 5.5 20.5 5.94771 20.5 6.5V17.5C20.5 18.0523 20.0523 18.5 19.5 18.5H18.5ZM16 17.5C16 18.8807 17.1193 20 18.5 20H19.5C20.8807 20 22 18.8807 22 17.5V6.5C22 5.11929 20.8807 4 19.5 4H18.5C17.1193 4 16 5.11929 16 6.5L16 17.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_space_evenly_horizontal_24_regular.svg";Details
| Name | Align Space Evenly Horizontal |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_align_space_evenly_horizontal_24_regular.svg |
| Filled file | ic_fluent_align_space_evenly_horizontal_24_filled.svg |
| React components | AlignSpaceEvenlyHorizontal24Regular, AlignSpaceEvenlyHorizontal24Filled |
| License | MIT (© Microsoft Corporation) |