@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 880 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var System = /*#__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: "M4.95 5h14.1C20.68 5 22 6.3 22 7.92v8.16A2.93 2.93 0 0 1 19.05 19H4.95A2.93 2.93 0 0 1 2 16.08V7.92A2.93 2.93 0 0 1 4.95 5Zm0 2a.93.93 0 0 0-.95.92v8.16c0 .5.42.92.95.92h14.1c.53 0 .95-.41.95-.92V7.92c0-.5-.42-.92-.95-.92H4.95Z"
}));
});
System.displayName = 'System';
export var SystemDimensions = {
height: 24,
width: 24
};