@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 851 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var KeyboardShift = /*#__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 24 24"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M10.68 2.6c.7-.8 1.94-.8 2.64 0l8.25 9.5c.98 1.14.18 2.9-1.32 2.9H17v5.25c0 .97-.78 1.75-1.75 1.75h-6.5C7.78 22 7 21.22 7 20.25V15H3.75c-1.5 0-2.3-1.76-1.32-2.9l8.25-9.5Z"
}));
});
KeyboardShift.displayName = 'KeyboardShift';
export var KeyboardShiftDimensions = {
height: 24,
width: 24
};