@styled-icons/fluentui-system-filled
Version:
FluentUI System (filled) icons available as Styled Components
23 lines • 969 B
JavaScript
import _extends from "@babel/runtime/helpers/extends";
import * as React from 'react';
import { StyledIconBase } from '@styled-icons/styled-icon';
export var ArrowDownload = /*#__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: "M12.25 38.5h23.5a1.75 1.75 0 0 1 .14 3.5H12.25a1.75 1.75 0 0 1-.14-3.5h23.64-23.5ZM23.61 6.26l.14-.01c.92 0 1.67.7 1.74 1.6l.01.15v21.33l4.8-4.79a1.75 1.75 0 0 1 2.47 2.48l-7.78 7.77c-.68.69-1.8.69-2.47 0l-7.78-7.77a1.75 1.75 0 0 1 2.47-2.48L22 29.33V8c0-.92.7-1.67 1.6-1.74l.15-.01h-.14Z"
}));
});
ArrowDownload.displayName = 'ArrowDownload';
export var ArrowDownloadDimensions = {
height: 48,
width: 48
};