Battery Charge 2 icon
The Battery Charge 2 icon is part of Microsoft's Fluent UI System Icons, available here in regular and filled styles on a 20 px grid. Download it as SVG or PNG, or copy it as code — it's free to use under the MIT License.
Every size and style
Microsoft draws each size separately so icons stay crisp, rather than scaling one drawing. Pick a style and size to preview it, download it, or copy the code for your platform.
Regular, 20 px
ic_fluent_battery_charge_2_20_regular.svg
Battery Charge 2 icon in React
npm install @fluentui/react-icons
import { BatteryCharge220Regular } from "@fluentui/react-icons";
export function Example() {
return <BatteryCharge220Regular aria-label="Battery Charge 2" />;
}Use the Battery Charge 2 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 { BatteryCharge220Regular, BatteryCharge220Filled } from "@fluentui/react-icons";
export function Example() {
return <BatteryCharge220Regular aria-label="Battery Charge 2" />;
}Use it in HTML
Reference the SVG file directly:
<img src="https://fluenticons.co/icons/ic_fluent_battery_charge_2_20_regular.svg" width="20" height="20" alt="Battery Charge 2"> Or paste the SVG markup inline. Setting fill="currentColor" makes the icon follow the text color of its parent:
<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill="currentColor" d="M6.32 6H3a2 2 0 0 0-2 2v4c0 1.1.9 2 2 2h13a2 2 0 0 0 2-2V8a2 2 0 0 0-2-2h-3.33l.1-.18q.2-.42.1-.82H16a3 3 0 0 1 3 3 1 1 0 0 1 1 1v2a1 1 0 0 1-1 1 3 3 0 0 1-3 3H3a3 3 0 0 1-3-3V8a3 3 0 0 1 3-3h3.83zM4 7a1 1 0 0 1 1 1v4a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V8a1 1 0 0 1 1-1zm5.37-4.82c.16-.3.63-.2.63.15V5h1.64c.2 0 .32.2.23.37L9.62 9.82c-.15.3-.62.2-.62-.15V7H7.35a.26.26 0 0 1-.22-.37z"/></svg>Details
| Name | Battery Charge 2 |
|---|---|
| Styles | Regular (outlined), Filled |
| Sizes | 20 px |
| Regular (outlined) file | ic_fluent_battery_charge_2_20_regular.svg |
| Filled file | ic_fluent_battery_charge_2_20_filled.svg |
| React (Regular) | BatteryCharge220Regular |
| React (Filled) | BatteryCharge220Filled |
| License | MIT (© Microsoft Corporation) |