From 233e9a9801d3c05b3e5d3942849deab99b516b9d Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 10 Jun 2026 10:41:22 +0000 Subject: [PATCH] Update src/components/ui/IconTextMarquee.tsx --- src/components/ui/IconTextMarquee.tsx | 29 --------------------------- 1 file changed, 29 deletions(-) diff --git a/src/components/ui/IconTextMarquee.tsx b/src/components/ui/IconTextMarquee.tsx index cb1bd90..e69de29 100644 --- a/src/components/ui/IconTextMarquee.tsx +++ b/src/components/ui/IconTextMarquee.tsx @@ -1,29 +0,0 @@ -import type { LucideIcon } from "lucide-react"; -import { cls } from "@/lib/utils"; -import { resolveIcon } from "@/utils/resolve-icon"; - -const IconTextMarquee = ({ centerIcon, texts }: { centerIcon: string | LucideIcon; texts: string[] }) => { - const CenterIcon = resolveIcon(centerIcon); - const items = [...texts, ...texts]; - - return ( -
-
- {Array.from({ length: 10 }).map((_, row) => ( -
- {items.map((text, i) => ( -
-

{text}

-
- ))} -
- ))} -
-
- -
-
- ); -}; - -export default IconTextMarquee;