@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.73 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 Security({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Security",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M10.707 5.795a1 1 0 0 0-1.414 0L7.5 7.588l-.793-.793A1 1 0 0 0 5.293 8.21l1.5 1.5a1 1 0 0 0 1.414 0l2.5-2.5a1 1 0 0 0 0-1.415Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M1.278 3.579a.953.953 0 0 1 .533-.702L7.566.102a1 1 0 0 1 .868 0l5.755 2.775a.953.953 0 0 1 .534.702c.186 1.143.559 4.294-.087 6.163-.95 2.749-4.8 5.293-6.159 6.12a.91.91 0 0 1-.954 0c-1.358-.827-5.209-3.371-6.159-6.12-.646-1.87-.273-5.02-.086-6.163Zm1.73 2.75c.022-.703.093-1.372.163-1.888L8 2.113l4.83 2.328c.069.516.14 1.185.162 1.887.034 1.027-.044 2.2-.247 2.784-.295.856-1.154 1.86-2.344 2.89A22.66 22.66 0 0 1 8 13.802a22.662 22.662 0 0 1-2.4-1.8c-1.191-1.03-2.05-2.034-2.345-2.89-.203-.585-.28-1.757-.247-2.784Z",
shapeRendering: "geometricPrecision"
}));
}
Security.displayName = 'Security';
export default createBaseComponent(Security);