@astraicons/react
Version:
A comprehensive icon set designed for websites, applications, social networks, and print media, tailored specifically for UI Astra.
30 lines • 1.91 kB
JavaScript
import * as React from "react";
import { forwardRef } from "react";
const EmptyIcon = ({
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: "M20.472 8.963A9 9 0 0 1 9.435 20.627m11.51-7.631a9 9 0 0 1-15.04 5.625"
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20.845 13.665a9 9 0 0 0 .1-.67m-.1.67a9 9 0 0 1-.241.978m.24-.978q.064-.33.1-.67m-.34 1.648a9 9 0 0 1-.281.783m.28-.784a9 9 0 0 1-2.633 4.093m2.353-3.31A9 9 0 0 1 17.657 19m2.666-3.574c.322-.783.53-1.601.622-2.43m-.622 2.43a9 9 0 0 1-1.002 1.809 9 9 0 0 1-1.172 1.337m-.492.428a9 9 0 0 1-1.778 1.121M17.657 19q.159-.129.313-.265m-.313.265q.254-.206.492-.428m-2.27 1.55a9 9 0 0 1-3.964.878m3.964-.879a9 9 0 0 1-3.964.879m0 0a9 9 0 0 1-6.01-2.379M11.914 21q0 0 0 0Zm.86-17.967q.284.025.563.067m0 0a9 9 0 0 1 5.248 2.765M13.337 3.1a9 9 0 0 0-6.322 1.406M13.338 3.1a9 9 0 0 1 .559.102m4.073 15.533.18-.163m-14.992-8.25q.053-.277.122-.548m0 0q.181-.708.47-1.373m-.47 1.373a9 9 0 0 0 .505 5.903M3.28 9.774A9 9 0 0 1 3.75 8.4m0 0a9 9 0 0 1 2.16-3.027m0 0a9 9 0 0 1 1.106-.868m-1.106.868a9 9 0 0 1 1.106-.868M3 19.976 20.842 4.921",
opacity: 0.4
}), /*#__PURE__*/React.createElement("path", {
strokeLinecap: "round",
d: "M20.472 8.963a9 9 0 0 1-2.323 9.609m0 0a9 9 0 0 1-.492.428m.492-.428a9 9 0 0 1-.492.428m0 0a9 9 0 0 1-1.778 1.121m0 0a9 9 0 0 1-3.964.879m3.964-.879a9 9 0 0 1-3.964.879m0 0a9 9 0 0 1-6.01-2.379M3 19.976l8.92-7.527"
}));
const ForwardRef = forwardRef(EmptyIcon);
export default ForwardRef;