diff --git a/src/frontend/src/icons/GradientSparkles/index.tsx b/src/frontend/src/icons/GradientSparkles/index.tsx index b8f3534d5..49502c6ba 100644 --- a/src/frontend/src/icons/GradientSparkles/index.tsx +++ b/src/frontend/src/icons/GradientSparkles/index.tsx @@ -1,7 +1,6 @@ -import { Infinity } from "lucide-react"; import { forwardRef } from "react"; -const GradientSparkles = forwardRef>( +export const GradientSparkles = forwardRef>( (props, ref) => { return ( <> @@ -13,10 +12,27 @@ const GradientSparkles = forwardRef>( - + {/* this svg comes from the source code of lucide, + we do not use the import because it crashes the ui (why? no one knows...). + source code from the used svg: + https://github.com/lucide-icons/lucide/blob/a4076db69b52ff0debc383f76d4d671c3bad5345/icons/infinity.svg?short_path=f79de91 + */} + + + ); } ); -export default GradientSparkles;