@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 856 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowUp = /*#__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: "M24 44.25a1.5 1.5 0 0 1-1.5-1.5V10.91l-12.18 12.4a1.5 1.5 0 1 1-2.14-2.11l14.75-15a.61.61 0 0 1 .02-.02 1.5 1.5 0 0 1 2.14.04L39.82 21.2a1.5 1.5 0 1 1-2.14 2.1L25.5 10.91v31.84c0 .83-.67 1.5-1.5 1.5Z"
}));
});
ArrowUp.displayName = 'ArrowUp';
export var ArrowUpDimensions = {
height: 48,
width: 48
};