@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 926 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Stack = /*#__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 4a2 2 0 0 0-2 2v7c0 1.1.9 2 2 2h11a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2H4zm2.5 13.5A2 2 0 0 1 4.56 16H15.5a2.5 2.5 0 0 0 2.5-2.5V6.56a2 2 0 0 1 1.5 1.94v5a4 4 0 0 1-4 4h-9zM9 20a2 2 0 0 1-1.94-1.5h9.19c2.35 0 4.25-1.9 4.25-4.25V9.06A2 2 0 0 1 22 11v3.25A5.75 5.75 0 0 1 16.25 20H9z"
}));
});
Stack.displayName = 'Stack';
export var StackDimensions = {
height: 24,
width: 24
};