@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
35 lines • 938 B
JavaScript
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",
fill: "none",
viewBox: "0 0 24 24",
strokeWidth: 1.5,
stroke: "currentColor",
"aria-hidden": "true",
ref: svgRef,
"aria-labelledby": titleId
}, props), title ? /*#__PURE__*/React.createElement("title", {
id: titleId
}, title) : null, /*#__PURE__*/React.createElement("path", {
d: "M2 16.605c2.588-1.124 9.706-1.348 11 5.395m-3.37-5.06c1.817-2.204 8.125-5.786 12.37-.575",
opacity: 0.4
}), /*#__PURE__*/React.createElement("circle", {
cx: 15.5,
cy: 8.5,
r: 1.5,
opacity: 0.4
}), /*#__PURE__*/React.createElement("rect", {
width: 20,
height: 20,
x: 2,
y: 2,
rx: 5.5
}));
}
const ForwardRef = React.forwardRef(GalleryIcon);
export default ForwardRef;