@semcore/icon
Version:
Semrush Icon Component
29 lines • 1.75 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "Security",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
d: "M15.707 8.794a1 1 0 0 0-1.414 0L11.5 11.587 9.707 9.794a1 1 0 0 0-1.414 1.414l2.5 2.5a1 1 0 0 0 1.414 0l3.5-3.5a1 1 0 0 0 0-1.414Z",
shapeRendering: "geometricPrecision"
}), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M3.388 5.407a.965.965 0 0 1 .551-.731l7.636-3.58a1 1 0 0 1 .85 0l7.636 3.58c.295.138.504.409.551.731.225 1.518.788 6.292-.08 8.734-1.257 3.535-6.462 6.795-8.062 7.73a.929.929 0 0 1-.94 0c-1.6-.935-6.805-4.195-8.062-7.73-.868-2.442-.305-7.216-.08-8.734ZM5.017 9.38c.044-1.2.169-2.343.272-3.127L12 3.105l6.71 3.147c.104.784.229 1.927.273 3.127.06 1.597-.038 3.254-.336 4.092-.437 1.231-1.688 2.46-3.294 3.79-1.236 1.024-2.509 2.041-3.353 2.56-.844-.519-2.117-1.536-3.353-2.56-1.606-1.33-2.857-2.559-3.294-3.79-.298-.838-.395-2.495-.336-4.092Z",
shapeRendering: "geometricPrecision"
}));
}
Security.displayName = 'Security';
export default createBaseComponent(Security);