@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 920 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowUpload = /*#__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: "M5.25 3.5h13.5a.75.75 0 0 0 .1-1.5H5.25a.75.75 0 0 0-.1 1.49h.1zM11.88 22H12a1 1 0 0 0 1-.88V8.4l3.3 3.3a1 1 0 0 0 1.31.08l.1-.09a1 1 0 0 0 .08-1.32l-.08-.1-5-4.99a1 1 0 0 0-1.32-.08l-.1.08-5 5a1 1 0 0 0 1.32 1.5l.1-.09L11 8.41V21a1 1 0 0 0 .88 1z"
}));
});
ArrowUpload.displayName = 'ArrowUpload';
export var ArrowUploadDimensions = {
height: 24,
width: 24
};