@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 2.4 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledLightEmergencyOnRegular = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M18 10.2319C18 6.91881 15.312 4.23193 12 4.23193C8.688 4.23193 6 6.91693 6 10.2319V16.2319H18V10.2319ZM16.2 14.4319H7.8V10.2319C7.8 7.91218 9.684 6.03193 12 6.03193C14.316 6.03193 16.2 7.91218 16.2 10.2319V14.4319ZM12 7.23193C10.3425 7.23193 9 8.57818 9 10.2319C9 10.5631 9.26396 10.8319 9.6 10.8319C9.93604 10.8319 10.2 10.5619 10.2 10.2319C10.2 9.23968 11.004 8.43193 12 8.43193C12.336 8.43193 12.6 8.16313 12.6 7.83193C12.6 7.50073 12.3038 7.23193 12 7.23193ZM20.6025 5.84818L22.4025 4.64818C22.8105 4.37214 22.9185 3.81418 22.6424 3.40018C22.3665 2.98618 21.8144 2.87443 21.3944 3.15058L19.5944 4.35058C19.1864 4.62662 19.0784 5.18458 19.3545 5.59858C19.6313 6.04693 20.1825 6.15568 20.6025 5.84818ZM4.2 10.2319C4.2 9.73506 3.792 9.33193 3.3 9.33193H0.9C0.408 9.33193 0 9.73693 0 10.2319C0 10.7269 0.408 11.1319 0.9 11.1319H3.3C3.79125 11.1319 4.2 10.7269 4.2 10.2319ZM23.1 9.33193H20.7C20.208 9.33193 19.8 9.73506 19.8 10.2319C19.8 10.7288 20.208 11.1319 20.7 11.1319H23.1C23.5913 11.1319 24 10.7269 24 10.2319C24 9.73693 23.5913 9.33193 23.1 9.33193ZM3.396 5.84818C3.816 6.12414 4.368 6.01254 4.644 5.59858C4.91996 5.18458 4.812 4.62658 4.40408 4.35058L2.60408 3.15058C2.184 2.90705 1.632 3.0188 1.356 3.4328C1.08 3.8468 1.188 4.40481 1.596 4.68081L3.396 5.84818ZM19.2 17.4319H4.8C4.14 17.4319 3.6 17.9697 3.6 18.6319V19.8319C3.6 20.4942 4.14 21.0319 4.8 21.0319H19.2C19.86 21.0319 20.4 20.4942 20.4 19.8319V18.6319C20.4 17.9682 19.86 17.4319 19.2 17.4319Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLightEmergencyOnRegular);
const LightEmergencyOnRegular = /*#__PURE__*/memo(ForwardRef);
export default LightEmergencyOnRegular;