@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 961 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowMinimize = /*#__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: "M4 15h8a1 1 0 0 1 1 .88V24a1 1 0 0 1-2 .12V18.4l-7.3 7.3a1 1 0 0 1-1.49-1.32l.08-.1L9.6 17H4a1 1 0 0 1-1-.88V16a1 1 0 0 1 .88-1H12 4zM25.7 2.3a1 1 0 0 1 .09 1.31l-.08.1L18.4 11H24a1 1 0 0 1 1 .88V12a1 1 0 0 1-.88 1H16a1 1 0 0 1-1-.88V4a1 1 0 0 1 2-.12V9.6l7.3-7.3a1 1 0 0 1 1.4 0z"
}));
});
ArrowMinimize.displayName = 'ArrowMinimize';
export var ArrowMinimizeDimensions = {
height: 28,
width: 28
};