@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.83 kB
JavaScript
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
import React from 'react';
import { createBaseComponent } from '@semcore/core';
import Icon from '@semcore/icon';
function MagicWand({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "MagicWand",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M11.559 1.289a1 1 0 0 0-1.415 0L1.29 10.144a1 1 0 0 0 0 1.415l2.153 2.153a1 1 0 0 0 1.415 0l8.855-8.856a1 1 0 0 0 0-1.414L11.559 1.29Zm-.707 2.121L8.697 5.565l.74.739 2.154-2.155-.74-.739ZM3.41 10.851 7.272 6.99l.739.739-3.862 3.861-.739-.739Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M13.622 7.259a.4.4 0 0 1 .75 0l.305.823a.4.4 0 0 0 .237.236l.823.305a.4.4 0 0 1 0 .75l-.823.305a.4.4 0 0 0-.237.237l-.304.823a.4.4 0 0 1-.75 0l-.305-.823a.4.4 0 0 0-.236-.237l-.824-.305a.4.4 0 0 1 0-.75l.824-.305a.4.4 0 0 0 .236-.236l.304-.823Zm-2.999 4.003a.4.4 0 0 1 .75 0l.575 1.553a.4.4 0 0 0 .236.236l1.552.574a.4.4 0 0 1 0 .75l-1.552.575a.4.4 0 0 0-.236.237l-.574 1.552a.4.4 0 0 1-.75 0l-.575-1.553a.4.4 0 0 0-.236-.236l-1.552-.574a.4.4 0 0 1 0-.75l1.552-.575a.4.4 0 0 0 .236-.236l.574-1.553Z",
shapeRendering: "geometricPrecision"
}));
}
MagicWand.displayName = 'MagicWand';
export default createBaseComponent(MagicWand);