@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.69 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 StyledLightEmergencyRegular = ({
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: "M12 4.28523C9.63214 4.28523 7.71429 6.20844 7.71429 8.57094C7.71429 9.04408 8.09138 9.42808 8.57143 9.42808C9.05148 9.42808 9.42857 9.04237 9.42857 8.57094C9.42857 7.15344 10.5771 5.99951 12 5.99951C12.4801 5.99951 12.8571 5.61551 12.8571 5.14237C12.8571 4.66923 12.4339 4.28523 12 4.28523ZM22.2857 18.8567H1.71429C0.771429 18.8567 0 19.6249 0 20.5709V22.2852C0 23.2313 0.771429 23.9995 1.71429 23.9995H22.2857C23.2286 23.9995 24 23.2313 24 22.2852V20.5709C24 19.6227 23.2286 18.8567 22.2857 18.8567ZM20.5714 8.57094C20.5714 3.8379 16.7314 -0.000488281 12 -0.000488281C7.26857 -0.000488281 3.42857 3.83523 3.42857 8.57094V17.1424H20.5714V8.57094ZM18 14.5709H6V8.57094C6 5.25701 8.69143 2.57094 12 2.57094C15.3086 2.57094 18 5.25701 18 8.57094V14.5709Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledLightEmergencyRegular);
const LightEmergencyRegular = /*#__PURE__*/memo(ForwardRef);
export default LightEmergencyRegular;