UNPKG

@guruhotel/aura-icons

Version:

🎨 Icon library designed by the Guruhotel team for Aura UI

32 lines • 1.55 kB
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 StyledLightEmergencySolid = ({ 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: "M20.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.57094ZM12 4.28523C9.63214 4.28523 7.71429 6.20844 7.71429 8.57094C7.71429 9.04408 7.3372 9.42808 6.85714 9.42808C6.37709 9.42808 6 9.04237 6 8.57094C6 5.26237 8.69143 2.57094 12 2.57094C12.4801 2.57094 12.8571 2.95494 12.8571 3.42808C12.8571 3.90123 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.8567Z" }) }) }); }; const ForwardRef = /*#__PURE__*/forwardRef(StyledLightEmergencySolid); const LightEmergencySolid = /*#__PURE__*/memo(ForwardRef); export default LightEmergencySolid;