@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.58 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 LockYes({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LockYes",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M12.042 5.011v1.074A2.01 2.01 0 0 1 14 8.03v3.009a4.009 4.009 0 0 1-1.194 2.804A4.02 4.02 0 0 1 9.983 15H6.017a4.02 4.02 0 0 1-2.823-1.157A4.009 4.009 0 0 1 2 11.039V8.09a2.004 2.004 0 0 1 2.008-2.005V5.01a4.01 4.01 0 0 1 1.177-2.836 4.02 4.02 0 0 1 6.857 2.836ZM9.445 3.593a2.01 2.01 0 0 0-3.428 1.418v1.074h4.016V5.01c0-.531-.211-1.042-.588-1.418Zm1.991 8.822c.375-.366.593-.863.606-1.386V8.09H4.059v2.939a2.004 2.004 0 0 0 2.008 1.955h3.966a2.01 2.01 0 0 0 1.403-.57Zm-2.7-.677a1.005 1.005 0 0 1-1.715-.71v-1.002a1.002 1.002 0 0 1 1.004-1.003 1.005 1.005 0 0 1 1.004 1.003v1.003c0 .266-.106.52-.294.709Z",
shapeRendering: "geometricPrecision"
}));
}
LockYes.displayName = 'LockYes';
export default createBaseComponent(LockYes);