@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.07 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const Category1Icon = ({
title,
titleId,
...props
}, ref) => /*#__PURE__*/React.createElement("svg", Object.assign({
xmlns: "http://www.w3.org/2000/svg",
viewBox: "0 0 24 24",
fill: "currentColor",
"aria-hidden": "true",
ref: ref,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M5.7 2.25A3.45 3.45 0 0 0 2.25 5.7v1.8a3.45 3.45 0 0 0 3.45 3.45h1.8a3.45 3.45 0 0 0 3.45-3.45V5.7A3.45 3.45 0 0 0 7.5 2.25zM5.7 13.05a3.45 3.45 0 0 0-3.45 3.45v1.8a3.45 3.45 0 0 0 3.45 3.45h1.8a3.45 3.45 0 0 0 3.45-3.45v-1.8a3.45 3.45 0 0 0-3.45-3.45zM16.5 13.05a3.45 3.45 0 0 0-3.45 3.45v1.8a3.45 3.45 0 0 0 3.45 3.45h1.8a3.45 3.45 0 0 0 3.45-3.45v-1.8a3.45 3.45 0 0 0-3.45-3.45zM16.5 2.25a3.45 3.45 0 0 0-3.45 3.45v1.8a3.45 3.45 0 0 0 3.45 3.45h1.8a3.45 3.45 0 0 0 3.45-3.45V5.7a3.45 3.45 0 0 0-3.45-3.45z"
}));
const ForwardRef = forwardRef(Category1Icon);
export default ForwardRef;