@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 860 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowSortUp = /*#__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: "m7.3 8.3 3.99-4a1 1 0 0 1 1.32-.1l.1.1 4 4a1 1 0 0 1-1.32 1.5l-.1-.1L13 7.43V19a1 1 0 0 1-.88 1H12a1 1 0 0 1-1-.88V7.4L8.7 9.7a1 1 0 0 1-1.31.08l-.1-.08a1 1 0 0 1-.08-1.32l.08-.1 4-4-4 4Z"
}));
});
ArrowSortUp.displayName = 'ArrowSortUp';
export var ArrowSortUpDimensions = {
height: 24,
width: 24
};