@codementor/ui-kit
Version:
50 lines (42 loc) • 1.66 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.UnlockSvg = undefined;
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _createIcon = require('../hoc/createIcon');
var _createIcon2 = _interopRequireDefault(_createIcon);
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
var UnlockSvg = function UnlockSvg(props) {
return _react2.default.createElement(
'svg',
props,
_react2.default.createElement(
'g',
{
fill: 'none',
fillRule: 'evenodd'
},
_react2.default.createElement('path', {
d: 'M0 0h24v24H0z'
}),
_react2.default.createElement('path', {
fill: '#231815',
fillRule: 'nonzero',
d: 'M11.994 1.8c-2.448 0-4.488 2.04-4.488 4.488h1.428c0-1.632 1.326-3.06 2.958-3.06 1.632 0 2.958 1.326 2.958 3.06v1.938c-.816-.51-1.734-.714-2.856-.714a7.313 7.313 0 0 0-7.344 7.344 7.313 7.313 0 0 0 7.344 7.344 7.313 7.313 0 0 0 7.344-7.344 7.346 7.346 0 0 0-2.856-5.814V6.288c0-2.448-2.04-4.488-4.488-4.488zm0 18.972a5.92 5.92 0 0 1-5.916-5.916 5.92 5.92 0 0 1 5.916-5.916 5.92 5.92 0 0 1 5.916 5.916 5.92 5.92 0 0 1-5.916 5.916zm0-8.058c-.816 0-1.428.612-1.428 1.428 0 .51.306 1.02.714 1.224v1.632h1.428v-1.632c.408-.204.714-.714.714-1.224 0-.816-.612-1.428-1.428-1.428z'
})
)
);
};
UnlockSvg.defaultProps = {
xmlns: 'http://www.w3.org/2000/svg',
width: '24',
height: '24',
viewBox: '0 0 24 24'
};
exports.default = (0, _createIcon2.default)({
SvgComponent: UnlockSvg,
displayName: 'UnlockIcon'
});
exports.UnlockSvg = UnlockSvg;