@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 992 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowMinimizeVertical = /*#__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: "M13.8 18.7a1 1 0 1 0 1.4-1.4l-2.5-2.5a1 1 0 0 0-1.4 0l-2.5 2.5a1 1 0 1 0 1.4 1.4l.8-.79V21a1 1 0 1 0 2 0v-3.09l.8.8zM4 12a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H5a1 1 0 0 1-1-1zM13 3a1 1 0 1 0-2 0v3.09l-.8-.8a1 1 0 0 0-1.4 1.42l2.5 2.5a1 1 0 0 0 1.4 0l2.5-2.5a1 1 0 0 0-1.4-1.42l-.8.8V3z"
}));
});
ArrowMinimizeVertical.displayName = 'ArrowMinimizeVertical';
export var ArrowMinimizeVerticalDimensions = {
height: 24,
width: 24
};