@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.66 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 Telescope({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Telescope",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "m15.039 3.165-13.583 8.81c-.451.292-.59.893-.314 1.357l2.02 3.39a.988.988 0 0 0 1.278.387l14.588-7.015 3.473-2.014c.478-.276.64-.891.364-1.37L19.86 1.496a.988.988 0 0 0-1.356-.361l-3.466 2.029Zm-11.7 9.967L4.4 14.91l12.737-6.125-1.925-3.355-11.872 7.7Zm13.568-8.748L18.9 7.86l1.748-1.013-2.006-3.478-1.735 1.015Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
d: "M12.888 14.399c-.373-.53-1.253-.53-1.626 0l-5.97 8.02a1.01 1.01 0 0 0 .238 1.398.993.993 0 0 0 1.387-.24l4.16-5.553v4.973A.998.998 0 0 0 12.072 24c.55 0 .994-.448.994-1.003v-4.973l4.16 5.552a.991.991 0 0 0 1.386.24c.449-.32.556-.944.239-1.398l-5.963-8.02Z",
shapeRendering: "geometricPrecision"
}));
}
Telescope.displayName = 'Telescope';
export default createBaseComponent(Telescope);