import { cn } from '@/lib/utils' import { IconCard } from './icon-card' interface ScrollingIconsProps { icons: readonly string[] direction?: 'up' | 'down' className?: string } /** * Scrolling icon column with seamless loop animation */ export function ScrollingIcons({ icons, direction = 'up', className, }: ScrollingIconsProps) { const animationClass = direction === 'up' ? 'animate-scroll-up' : 'animate-scroll-down' return ( ) }