@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
45 lines • 994 B
JavaScript
const React = require("react");
function CategoryIcon({
title,
titleId,
...props
}, svgRef) {
return /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("rect", {
width: 8,
height: 8,
x: 2,
y: 2,
rx: 3
}), /*#__PURE__*/React.createElement("rect", {
width: 8,
height: 8,
x: 2,
y: 14,
rx: 3
}), /*#__PURE__*/React.createElement("rect", {
width: 8,
height: 8,
x: 14,
y: 14,
rx: 3
}), /*#__PURE__*/React.createElement("rect", {
width: 8,
height: 8,
x: 14,
y: 2,
rx: 3
}));
}
const ForwardRef = React.forwardRef(CategoryIcon);
module.exports = ForwardRef;