'use client'; import { ArrowDown } from 'lucide-react'; import { cn } from '@djangocfg/ui-core/lib'; export interface JumpToLatestProps { visible?: boolean; unreadCount?: number; onClick?: () => void; className?: string; } export function JumpToLatest({ visible, unreadCount = 0, onClick, className }: JumpToLatestProps) { if (!visible) return null; return ( ); }