UNPKG

@astraicons/react

Version:

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

23 lines 1.2 kB
import * as React from "react"; function GalleryIcon({ title, titleId, ...props }, svgRef) { return /*#__PURE__*/React.createElement("svg", Object.assign({ xmlns: "http://www.w3.org/2000/svg", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", ref: svgRef, "aria-labelledby": titleId }, props), title ? /*#__PURE__*/React.createElement("title", { id: titleId }, title) : null, /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", d: "M7.5 2A5.5 5.5 0 0 0 2 7.5v8.114a7.8 7.8 0 0 1 1.684-.32c1.237-.105 2.635.029 3.992.453.5.156.997.353 1.48.593 1.073-1.22 3.27-2.588 5.78-3.007 2.274-.379 4.838.019 7.064 2.004V7.5A5.5 5.5 0 0 0 16.5 2zm14.424 15.415-.002.002c-2.055-2.485-4.535-2.972-6.74-2.604-2.044.34-3.814 1.414-4.716 2.321 1.481 1.079 2.685 2.667 3.195 4.866h2.84a5.5 5.5 0 0 0 5.423-4.585M12.113 22c-.742-2.639-2.725-4.146-4.885-4.821a9.1 9.1 0 0 0-3.417-.39c-.707.059-1.307.207-1.767.407A5.5 5.5 0 0 0 7.5 22zM15.5 7.75a.75.75 0 1 0 0 1.5.75.75 0 0 0 0-1.5m-2.25.75a2.25 2.25 0 1 1 4.5 0 2.25 2.25 0 0 1-4.5 0", clipRule: "evenodd" })); } const ForwardRef = React.forwardRef(GalleryIcon); export default ForwardRef;