UNPKG

@nomercyicons/react

Version:
35 lines 1.52 kB
const React = require("react"); function SevereColdRoundedIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("g", { fill: "none" }, /*#__PURE__*/React.createElement("path", { d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M0 0h24v24H0z" })), /*#__PURE__*/React.createElement("path", { d: "M20 2c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1s1-.45 1-1V3c0-.55-.45-1-1-1z" }), /*#__PURE__*/React.createElement("circle", { cx: 20, cy: 9, r: 1 }), /*#__PURE__*/React.createElement("path", { d: "M12 10.41l3.29-3.29a.996.996 0 10-1.41-1.41L12 7.59V5c0-.55-.45-1-1-1s-1 .45-1 1v2.59L8.12 5.71a.996.996 0 10-1.41 1.41L10 10.41V12H8.41L5.12 8.71a.996.996 0 10-1.41 1.41L5.59 12H3c-.55 0-1 .45-1 1s.45 1 1 1h2.59l-1.88 1.88a.996.996 0 101.41 1.41L8.41 14H10v1.59l-3.29 3.29a.996.996 0 101.41 1.41L10 18.41V21c0 .55.45 1 1 1s1-.45 1-1v-2.59l1.88 1.88a.996.996 0 101.41-1.41L12 15.59V14h1.59l3.29 3.29a.996.996 0 101.41-1.41L16.41 14H19c.55 0 1-.45 1-1s-.45-1-1-1h-7v-1.59z" })); } const ForwardRef = React.forwardRef(SevereColdRoundedIcon); module.exports = ForwardRef;