import { Children, ReactNode } from 'react'; import clsx from 'clsx'; interface TimelineWrapperProps { children: ReactNode; className?: string; } export function TimelineWrapper({ children, className }: TimelineWrapperProps) { const items = Children.toArray(children); return (