@nomercyicons/react
Version: 
32 lines • 1.04 kB
JavaScript
const React = require("react");
function HourglassBottomTwoToneIcon({
  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: "M16 16.5l-4-4-4 4V20h8z",
    opacity: 0.3
  }), /*#__PURE__*/React.createElement("path", {
    d: "M16 16.5l-4-4-4 4V20h8z",
    opacity: 0.3
  }), /*#__PURE__*/React.createElement("path", {
    d: "M6 22h12v-6l-4-4 3.99-4.01L18 2H6l.01 5.99L10 12l-4 3.99V22zM8 7.5V4h8v3.5l-4 4-4-4zm0 9l4-4 4 4V20H8v-3.5z"
  }));
}
const ForwardRef = React.forwardRef(HourglassBottomTwoToneIcon);
module.exports = ForwardRef;