@morphemeicons/react
Version:
Morpheme Icons React
27 lines (25 loc) • 1.1 kB
JavaScript
import * as React from "react";
function MagicWand01Icon({
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: "M13 14l-3-3m5.01-7.5V2m3.94 3.06L20.01 4m-1.06 9l1.06 1.06m-9-9L9.95 4m10.56 5h1.5M6.131 20.869l9.237-9.238c.396-.396.595-.594.669-.822a1 1 0 000-.618c-.074-.228-.272-.426-.668-.822l-.738-.738c-.396-.396-.594-.594-.822-.668a1 1 0 00-.618 0c-.229.074-.427.272-.823.668L3.131 17.87c-.396.396-.594.594-.668.822a1 1 0 000 .618c.074.228.272.426.668.822l.737.738c.397.396.595.594.823.668a1 1 0 00.618 0c.228-.074.426-.272.822-.668z"
}));
}
const ForwardRef = React.forwardRef(MagicWand01Icon);
export default ForwardRef;