@nomercyicons/react
Version:
24 lines • 840 B
JavaScript
import * as React from "react";
function ProducthuntIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 48 48",
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: "currentColor",
fillRule: "evenodd",
d: "M27.2 28.8h-6.8V36h-4.8V12h11.6a8.4 8.4 0 018.4 8.4 8.4 8.4 0 01-8.4 8.4M24 0C10.745 0 0 10.745 0 24s10.745 24 24 24c13.254 0 24-10.745 24-24S37.254 0 24 0m3.2 16.8h-6.8V24h6.8a3.6 3.6 0 100-7.2"
}));
}
const ForwardRef = React.forwardRef(ProducthuntIcon);
export default ForwardRef;