@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 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 28 28"
}, props, {
ref: ref
}), /*#__PURE__*/React.createElement("path", {
d: "M16.5 3H24a1 1 0 0 1 1 .88v7.62a1 1 0 0 1-2 .12V6.4L6.41 23h5.09a1 1 0 0 1 1 .88V24a1 1 0 0 1-.88 1H4a1 1 0 0 1-1-.88V16.5a1 1 0 0 1 2-.12v5.21L21.59 5H16.5a1 1 0 0 1-1-.88V4a1 1 0 0 1 .88-1H24h-7.5z"
}));
});
ArrowMaximize.displayName = 'ArrowMaximize';
export var ArrowMaximizeDimensions = {
height: 28,
width: 28
};