@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 883 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowMaximize = /*#__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: "M40.5 24a1.5 1.5 0 0 1-1.5-1.5V11.12L11.12 39H22.5a1.5 1.5 0 0 1 0 3h-15A1.5 1.5 0 0 1 6 40.5v-15a1.5 1.5 0 0 1 3 0v11.38L36.88 9H25.5a1.5 1.5 0 0 1 0-3h15c.83 0 1.5.67 1.5 1.5v15c0 .83-.67 1.5-1.5 1.5Z"
}));
});
ArrowMaximize.displayName = 'ArrowMaximize';
export var ArrowMaximizeDimensions = {
height: 48,
width: 48
};