UNPKG

@astraicons/react

Version:

A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.

44 lines 1.07 kB
const React = require("react"); const { forwardRef } = require("react"); const ExploreIcon = ({ title, titleId, ...props }, ref) => /*#__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: ref, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("rect", { width: 7.2, height: 7.2, x: 3, y: 3, rx: 2.7 }), /*#__PURE__*/React.createElement("rect", { width: 7.2, height: 7.2, x: 3, y: 13.8, opacity: 0.4, rx: 2.7 }), /*#__PURE__*/React.createElement("rect", { width: 7.2, height: 7.2, x: 13.801, y: 3, rx: 2.7 }), /*#__PURE__*/React.createElement("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "m20.21 20.153 1.22 1.336M21 17.5a3.5 3.5 0 1 1-7 0 3.5 3.5 0 0 1 7 0", opacity: 0.4 })); const ForwardRef = forwardRef(ExploreIcon); module.exports = ForwardRef;