@semcore/icon
Version:
Semrush Icon Component
26 lines • 1.17 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 KeyCmd({
width = '16',
height = '16',
viewBox = '0 0 16 16',
...props
}, ref) {
return /*#__PURE__*/React.createElement(Icon, _extends({
ref: ref,
"data-name": "KeyCmd",
"data-group": "m",
width: width,
height: height,
viewBox: viewBox
}, props), /*#__PURE__*/React.createElement("path", {
fillRule: "evenodd",
clipRule: "evenodd",
d: "M6 3v1h4V3a3 3 0 1 1 3 3h-1v4h1a3 3 0 1 1-3 3v-1H6v1a3 3 0 1 1-3-3h1V6H3a3 3 0 1 1 3-3ZM4 4V3a1 1 0 1 0-1 1h1Zm6 6V6H6v4h4Zm2 2v1a1 1 0 1 0 1-1h-1Zm1-8h-1V3a1 1 0 1 1 1 1Zm-9 8H3a1 1 0 1 0 1 1v-1Z",
shapeRendering: "geometricPrecision"
}));
}
KeyCmd.displayName = 'KeyCmd';
export default createBaseComponent(KeyCmd);