@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 946 B
JavaScript
const React = require("react");
function Snowflake01Icon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "M18.062 8.5l-12.124 7m12.124-7l1.098-4.098M18.062 8.5l4.098 1.098M5.938 15.5L1.84 14.402M5.938 15.5L4.84 19.598M18.062 15.5l-12.124-7m12.124 7l4.098-1.098M18.062 15.5l1.098 4.098M5.938 8.5L4.84 4.402M5.938 8.5L1.84 9.598M12 5v14m0-14L9 2m3 3l3-3m-3 17l-3 3m3-3l3 3"
}));
}
const ForwardRef = React.forwardRef(Snowflake01Icon);
module.exports = ForwardRef;