@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
24 lines • 1.16 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.441 4.278 1.88-1.044a1.85 1.85 0 0 1 1.801 0l1.88 1.044m-2.783-.84v2.607M15.002 19.722l-1.88 1.045c-.56.311-1.242.311-1.801 0l-1.88-1.045m2.778-2.21v2.607M20.325 13.306l.003 2.151a1.85 1.85 0 0 1-.872 1.575l-1.824 1.139m2.08-2.027-2.28-1.262M4.117 10.692 4.113 8.54a1.85 1.85 0 0 1 .872-1.575L6.81 5.827m.586 3.502-2.28-1.262M6.975 18.31 5.12 17.22a1.85 1.85 0 0 1-.912-1.553l-.053-2.149m.687 2.823 2.246-1.321M17.466 5.688l1.853 1.092c.552.324.898.912.913 1.552l.052 2.15m-3.313-1.276 2.246-1.322"
}));
const ForwardRef = forwardRef(AssetsIcon);
module.exports = ForwardRef;