@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
22 lines • 875 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const BatteryEmptyIcon = ({
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: "M20.094 15.75a2.15 2.15 0 0 0 2.15-2.15v-3.2a2.15 2.15 0 0 0-2.15-2.15h-.358a4.25 4.25 0 0 0-4.242-4h-9a4.25 4.25 0 0 0-4.25 4.25v7a4.25 4.25 0 0 0 4.25 4.25h9a4.25 4.25 0 0 0 4.242-4zm.65-5.35a.65.65 0 0 0-.65-.65h-.35v4.5h.35a.65.65 0 0 0 .65-.65z",
clipRule: "evenodd"
}));
const ForwardRef = forwardRef(BatteryEmptyIcon);
module.exports = ForwardRef;