@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
23 lines • 782 B
JavaScript
const React = require("react");
const { forwardRef } = require("react");
const LoadingIcon = ({
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",
d: "M11.998 21v-2M11.998 5V3M20.998 12h-2M4.998 12h-2M18.361 18.364l-1.414-1.414M7.049 7.05 5.635 5.636M5.635 18.364l1.414-1.414M16.947 7.05l1.415-1.414"
}));
const ForwardRef = forwardRef(LoadingIcon);
module.exports = ForwardRef;