UNPKG

@nomercyicons/react

Version:
29 lines 907 B
const React = require("react"); function FileUploadTwoToneIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", fill: "currentColor", viewBox: "0 0 24 24", strokeWidth: 1.5, stroke: "none", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fill: "none", d: "M0 0h24v24H0z" }), /*#__PURE__*/React.createElement("path", { d: "M9.83 8H11v6h2V8h1.17L12 5.83z", opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M5 18h14v2H5zM5 10h4v6h6v-6h4l-7-7-7 7zm8-2v6h-2V8H9.83L12 5.83 14.17 8H13z" })); } const ForwardRef = React.forwardRef(FileUploadTwoToneIcon); module.exports = ForwardRef;