Battery 10 icon
Used for power indication on devices. Contains power variants. The Battery 10 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 10 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 { Battery1024Regular, Battery1024Filled } from "@fluentui/react-icons";
export function Example() {
return <Battery1024Regular aria-label="Battery 10" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_battery_10_24_regular.svg" width="24" height="24" alt="Battery 10"> 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.5ZM6.00008 9H16.0001C16.5129 9 16.9356 9.38604 16.9934 9.88338L17.0001 10V14C17.0001 14.5128 16.6141 14.9355 16.1167 14.9933L16.0001 15H6.00008C5.48725 15 5.06457 14.614 5.00681 14.1166L5.00008 14V10C5.00008 9.48717 5.38612 9.06449 5.88346 9.00673L6.00008 9H16.0001H6.00008Z" 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_10_24_regular.svg";Details
| Name | Battery 10 |
|---|---|
| Styles | Regular (outlined), Filled |
| Size | 24 × 24 px (scalable SVG) |
| Regular (outlined) file | ic_fluent_battery_10_24_regular.svg |
| Filled file | ic_fluent_battery_10_24_filled.svg |
| React components | Battery1024Regular, Battery1024Filled |
| License | MIT (© Microsoft Corporation) |