@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 983 B
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const BatteryHalfIcon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
d: "M22.25 13.6a2.15 2.15 0 0 1-2.15 2.15h-.358a4.25 4.25 0 0 1-4.242 4h-9a4.25 4.25 0 0 1-4.25-4.25v-7A4.25 4.25 0 0 1 6.5 4.25h9a4.25 4.25 0 0 1 4.242 4h.358a2.15 2.15 0 0 1 2.15 2.15zm-1.69-3.66a.65.65 0 0 1 .19.46v3.2a.65.65 0 0 1-.65.65h-.35v-4.5h.35a.65.65 0 0 1 .46.19M5.75 8v8a.75.75 0 0 0 1.5 0V8a.75.75 0 0 0-1.5 0m3 0v8a.75.75 0 0 0 1.5 0V8a.75.75 0 0 0-1.5 0",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(BatteryHalfIcon);
export default ForwardRef;