@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.27 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 LockNo({
width = '24',
height = '24',
viewBox = '0 0 24 24',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "LockNo",
"data-group": "l",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M8 8h12a2 2 0 0 1 2.04 2v9a4 4 0 0 1-4 4h-12a4 4 0 0 1-4-4v-9a2 2 0 0 1 2-2h2V7a6 6 0 0 1 6-6 5.88 5.88 0 0 1 2 .36 1 1 0 0 1-.68 1.88A4 4 0 0 0 8 7v1Zm11.414 12.414A2 2 0 0 0 20 19v-9H4v9a2 2 0 0 0 2 2h12a2 2 0 0 0 1.414-.586Zm-6.707-2.977A1 1 0 0 1 11 16.73v-3a1 1 0 0 1 2 0v3a1 1 0 0 1-.293.707Z",
shapeRendering: "geometricPrecision"
}));
}
LockNo.displayName = 'LockNo';
export default createBaseComponent(LockNo);