@nomercyicons/react
Version:
34 lines • 1.15 kB
JavaScript
const React = require("react");
function CategoryTwoToneIcon({
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 0h24v24H0V0z"
}), /*#__PURE__*/React.createElement("circle", {
cx: 17.5,
cy: 17.5,
r: 2.5,
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M5 15.5h4v4H5zm7-9.66L10.07 9h3.86z",
opacity: 0.3
}), /*#__PURE__*/React.createElement("path", {
d: "M12 2l-5.5 9h11L12 2zm0 3.84L13.93 9h-3.87L12 5.84zM17.5 13c-2.49 0-4.5 2.01-4.5 4.5s2.01 4.5 4.5 4.5 4.5-2.01 4.5-4.5-2.01-4.5-4.5-4.5zm0 7a2.5 2.5 0 010-5 2.5 2.5 0 010 5zM11 13.5H3v8h8v-8zm-2 6H5v-4h4v4z"
}));
}
const ForwardRef = React.forwardRef(CategoryTwoToneIcon);
module.exports = ForwardRef;