@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 877 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var Maximize = /*#__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 48 48"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M6 11.5A5.5 5.5 0 0 1 11.5 6h25a5.5 5.5 0 0 1 5.5 5.5v25a5.5 5.5 0 0 1-5.5 5.5h-25A5.5 5.5 0 0 1 6 36.5v-25zM11.5 9A2.5 2.5 0 0 0 9 11.5v25a2.5 2.5 0 0 0 2.5 2.5h25a2.5 2.5 0 0 0 2.5-2.5v-25A2.5 2.5 0 0 0 36.5 9h-25z"
}));
});
Maximize.displayName = 'Maximize';
export var MaximizeDimensions = {
height: 48,
width: 48
};