@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 921 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var KeyCommand = /*#__PURE__*/React.forwardRef(function (props, ref) {
var attrs = {
"fill": "currentColor",
"xmlns": "http://www.w3.org/2000/svg"
};
return /*#__PURE__*/React.createElement(StyledIconBase, _extends({
iconAttrs: attrs,
iconVerticalAlign: "middle",
iconViewBox: "0 0 16 16"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M1.5 4a2.5 2.5 0 0 1 5 0v1h3V4A2.5 2.5 0 1 1 12 6.5h-1v3h1A2.5 2.5 0 1 1 9.5 12v-1h-3v1A2.5 2.5 0 1 1 4 9.5h1v-3H4A2.5 2.5 0 0 1 1.5 4zm9.5 7v1a1 1 0 1 0 1-1h-1zM9.5 9.5v-3h-3v3h3zM12 5a1 1 0 1 0-1-1v1h1zm-7 6H4a1 1 0 1 0 1 1v-1zm0-7a1 1 0 1 0-1 1h1V4z"
}));
});
KeyCommand.displayName = 'KeyCommand';
export var KeyCommandDimensions = {
height: 16,
width: 16
};