@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
29 lines • 1.27 kB
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const AssetsIcon = ({
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("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m9.328 4.278 1.88-1.044a1.85 1.85 0 0 1 1.8 0l1.88 1.044m-2.782-.84v2.607M14.888 19.722l-1.88 1.045c-.56.311-1.24.311-1.8 0l-1.88-1.045m2.778-2.21v2.607"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
strokeLinejoin: "round",
d: "m20.211 13.306.004 2.151a1.85 1.85 0 0 1-.872 1.575l-1.824 1.139m2.08-2.027-2.28-1.262M4.003 10.692 4 8.54a1.85 1.85 0 0 1 .872-1.575l1.824-1.139m.586 3.502-2.28-1.262M6.861 18.31l-1.853-1.09a1.85 1.85 0 0 1-.913-1.553l-.052-2.149m.686 2.823 2.247-1.321M17.353 5.688l1.853 1.092c.552.324.897.912.913 1.552l.052 2.15m-3.314-1.276 2.247-1.322",
opacity: 0.4
}));
const ForwardRef = forwardRef(AssetsIcon);
module.exports = ForwardRef;