@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
20 lines • 1.05 kB
JavaScript
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",
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: "M17.25 13a4.25 4.25 0 0 1 3.502 6.657l.982 1.076a.75.75 0 0 1-1.108 1.011l-.93-1.02A4.25 4.25 0 1 1 17.25 13M7.25 12.8a3.45 3.45 0 0 1 3.45 3.45v1.8a3.45 3.45 0 0 1-3.45 3.45h-1.8A3.45 3.45 0 0 1 2 18.05v-1.8a3.45 3.45 0 0 1 3.45-3.45zM7.25 2a3.45 3.45 0 0 1 3.45 3.45v1.8a3.45 3.45 0 0 1-3.45 3.45h-1.8A3.45 3.45 0 0 1 2 7.25v-1.8A3.45 3.45 0 0 1 5.45 2zM18.05 2a3.45 3.45 0 0 1 3.45 3.45v1.8a3.45 3.45 0 0 1-3.45 3.45h-1.8a3.45 3.45 0 0 1-3.45-3.45v-1.8A3.45 3.45 0 0 1 16.25 2z"
}));
const ForwardRef = forwardRef(ExploreIcon);
module.exports = ForwardRef;