UNPKG

@nomercyicons/react

Version:
31 lines 1.06 kB
const React = require("react"); function BackupTableTwoToneIcon({ 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: "M11 11h5v5h-5zM4 11h5v5H4zM4 4h12v5H4z", opacity: 0.3 }), /*#__PURE__*/React.createElement("path", { d: "M20 6v14H6v2h14c1.1 0 2-.9 2-2V6h-2z" }), /*#__PURE__*/React.createElement("path", { d: "M18 16V4c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2zM4 4h12v5H4V4zm5 12H4v-5h5v5zm2-5h5v5h-5v-5z" })); } const ForwardRef = React.forwardRef(BackupTableTwoToneIcon); module.exports = ForwardRef;