metadata-based-explorer1
Version:
Box UI Elements
33 lines (31 loc) • 1.02 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
var IconDownload = function IconDownload(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? '#444' : _ref$color,
_ref$height = _ref.height,
height = _ref$height === void 0 ? 14 : _ref$height,
title = _ref.title,
_ref$width = _ref.width,
width = _ref$width === void 0 ? 12 : _ref$width;
return React.createElement(AccessibleSVG, {
className: "icon-download ".concat(className),
height: height,
title: title,
viewBox: "0 0 12 14",
width: width
}, React.createElement("path", {
className: "stroke-color",
d: "M8.5.8h-5v5H1.2L6 10.6l4.8-4.8H8.5v-5z",
fill: "none",
stroke: color
}), React.createElement("path", {
className: "stroke-color",
d: "M0 13.3h12",
fill: "none",
stroke: color
}));
};
export default IconDownload;