metadata-based-explorer1
Version:
Box UI Elements
33 lines (31 loc) • 1.01 kB
JavaScript
import * as React from 'react';
import AccessibleSVG from '../accessible-svg';
var IconUpload = function IconUpload(_ref) {
var _ref$className = _ref.className,
className = _ref$className === void 0 ? '' : _ref$className,
_ref$color = _ref.color,
color = _ref$color === void 0 ? '#444444' : _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-upload ".concat(className),
height: height,
title: title,
viewBox: "0 0 12 14",
width: width
}, React.createElement("path", {
className: "stroke-color",
d: "M3.5 10.4h5v-5h2.3L6 .6 1.2 5.4h2.3v5z",
fill: "none",
stroke: color
}), React.createElement("path", {
className: "stroke-color",
d: "M12 13.5H0",
fill: "none",
stroke: color
}));
};
export default IconUpload;