Battery Checkmark icon

Used for power indication on devices. The Battery Checkmark 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.

Regular (outlined)

SVG

Filled

SVG

Use the Battery Checkmark 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 { BatteryCheckmark24Regular, BatteryCheckmark24Filled } from "@fluentui/react-icons";

export function Example() {
  return <BatteryCheckmark24Regular aria-label="Battery Checkmark" />;
}

Use it in HTML

Reference the SVG file directly:

<img src="https://fluenticons.co/icons/ic_fluent_battery_checkmark_24_regular.svg" width="24" height="24" alt="Battery Checkmark">

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.0003 6C18.6572 6 20.0003 7.34315 20.0003 9V10H21.0006C21.1827 10 21.3535 10.0487 21.5006 10.1338C21.7995 10.3067 22.0006 10.6299 22.0006 11V13C22.0006 13.3701 21.7995 13.6933 21.5006 13.8662C21.3535 13.9513 21.1827 14 21.0006 14H20.0003V15C20.0003 16.6569 18.6572 18 17.0003 18H12.8261C12.9398 17.5185 13 17.0163 13 16.5H16.9985C17.7781 16.5 18.4189 15.9051 18.4916 15.1445L18.4985 15V9C18.4985 8.2203 17.9036 7.57955 17.1429 7.50687L16.9985 7.5H5C4.2203 7.5 3.57955 8.09488 3.50687 8.85554L3.5 9V10.7322C2.94898 11.0194 2.44427 11.3832 2 11.8096V9C2 7.34315 3.34315 6 5 6H17.0003ZM12 16.5C12 19.5376 9.53757 22 6.5 22C3.46243 22 1 19.5376 1 16.5C1 13.4624 3.46243 11 6.5 11C9.53757 11 12 13.4624 12 16.5ZM9.85355 14.1464C9.65829 13.9512 9.34171 13.9512 9.14645 14.1464L5.5 17.7929L3.85355 16.1464C3.65829 15.9512 3.34171 15.9512 3.14645 16.1464C2.95118 16.3417 2.95118 16.6583 3.14645 16.8536L5.14645 18.8536C5.34171 19.0488 5.65829 19.0488 5.85355 18.8536L9.85355 14.8536C10.0488 14.6583 10.0488 14.3417 9.85355 14.1464Z" 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_checkmark_24_regular.svg";

Details

NameBattery Checkmark
StylesRegular (outlined), Filled
Size24 × 24 px (scalable SVG)
Regular (outlined) fileic_fluent_battery_checkmark_24_regular.svg
Filled fileic_fluent_battery_checkmark_24_filled.svg
React componentsBatteryCheckmark24Regular, BatteryCheckmark24Filled
LicenseMIT (© Microsoft Corporation)

Keywords

chargepower

Related icons