Battery 8 icon
Used for power indication on devices. Contains power variants. The Battery 8 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 Battery 8 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 { Battery824Regular, Battery824Filled } from "@fluentui/react-icons";
export function Example() {
return <Battery824Regular aria-label="Battery 8" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_battery_8_24_regular.svg" width="24" height="24" alt="Battery 8"> 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="M17.0001 6C18.657 6 20.0001 7.34315 20.0001 9V10H21.0004C21.1825 10 21.3533 10.0487 21.5004 10.1338C21.7993 10.3067 22.0004 10.6299 22.0004 11V13C22.0004 13.3701 21.7993 13.6933 21.5004 13.8662C21.3533 13.9513 21.1825 14 21.0004 14H20.0001V15C20.0001 16.6569 18.657 18 17.0001 18H4.99976C3.34291 18 1.99976 16.6569 1.99976 15V9C1.99976 7.34315 3.34291 6 4.99976 6H17.0001ZM16.9982 7.5H4.99976C4.22006 7.5 3.57931 8.09489 3.50662 8.85554L3.49976 9V15C3.49976 15.7797 4.09464 16.4204 4.8553 16.4931L4.99976 16.5H16.9982C17.7779 16.5 18.4187 15.9051 18.4914 15.1445L18.4982 15V9C18.4982 8.2203 17.9033 7.57955 17.1427 7.50687L16.9982 7.5ZM5.99976 9H14.0001C14.5129 9 14.9356 9.38604 14.9934 9.88338L15.0001 10V14C15.0001 14.5128 14.6141 14.9355 14.1167 14.9933L14.0001 15H5.99976C5.48692 15 5.06425 14.614 5.00648 14.1166L4.99976 14V10C4.99976 9.48717 5.3858 9.06449 5.88314 9.00673L5.99976 9H14.0001H5.99976Z" 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/battery_8_24_regular.svg";Details
| Name | Battery 8 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_battery_8_24_regular.svg |
| Filled file | ic_fluent_battery_8_24_filled.svg |
| React components | Battery824Regular, Battery824Filled |
| License | MIT (© Microsoft Corporation) |