@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.29 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 = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LockYes",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M17.96 8h2a2 2 0 0 1 2 2v9a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4v-9a2 2 0 0 1 2-2h2V7a6 6 0 1 1 12 0v1ZM9.132 4.172A4 4 0 0 0 7.96 7v1h8V7a4 4 0 0 0-6.828-2.828Zm10.242 16.242A2 2 0 0 0 19.96 19v-9h-16v9a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586Zm-6.707-2.707A1 1 0 0 1 10.96 17v-3a1 1 0 0 1 2 0v3a1 1 0 0 1-.293.707Z",
shapeRendering: "geometricPrecision"
}));
}
LockYes.displayName = 'LockYes';
export default createBaseComponent(LockYes);