@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 789 B
JavaScript
import * as React from "react";
function Snowflake02Icon({
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: "M12 8v8m0-8V2m0 6L7 3m5 5l5-5m-5 13v6m0-6l-5 5m5-5l5 5m-1-9H8m8 0h6m-6 0l5-5m-5 5l5 5M8 12H2m6 0L3 7m5 5l-5 5"
}));
}
const ForwardRef = React.forwardRef(Snowflake02Icon);
export default ForwardRef;