UNPKG

@astraicons/react

Version:

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

22 lines 1.24 kB
const React = require("react"); const { forwardRef } = require("react"); const GalleryIcon = ({ 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", { fillRule: "evenodd", d: "M13.25 8.5a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0m-5.3-6.25a5.7 5.7 0 0 0-5.7 5.7v8.09l.444-.22.029-.012c1.322-.527 3.692-.82 5.908-.24.38.1.759.226 1.127.382.494-.43 1.137-.818 1.855-1.135a10.8 10.8 0 0 1 3.44-.863c2.212-.178 4.7.33 6.696 2.184l.001-.086v-8.1a5.7 5.7 0 0 0-5.7-5.7zm13.468 15.722c-1.717-2.106-4.072-2.7-6.243-2.525a9.3 9.3 0 0 0-2.957.74 7 7 0 0 0-1.037.562c1.188.867 2.14 2.17 2.545 4.058.076.245.139.574.149.943h2.175a5.7 5.7 0 0 0 5.368-3.778m-9.044 3.778a2 2 0 0 0-.085-.513l-.014-.04-.01-.043c-.516-2.469-2.162-3.65-4.014-4.134-1.884-.494-3.908-.233-4.947.17l-.839.417A5.7 5.7 0 0 0 7.95 21.75z", clipRule: "evenodd" })); const ForwardRef = forwardRef(GalleryIcon); module.exports = ForwardRef;