20 lines
767 B
TypeScript
20 lines
767 B
TypeScript
import { ReactNode } from 'react';
|
|
import clsx from 'clsx';
|
|
|
|
interface TimelineWrapperProps {
|
|
children: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
export function TimelineWrapper({ children, className }: TimelineWrapperProps) {
|
|
return (
|
|
<div className={clsx('relative pl-8', className)}>
|
|
<div className="pointer-events-none absolute left-3 top-0 h-full w-px bg-gradient-to-b from-transparent via-blue-300 to-transparent dark:via-blue-500/70" aria-hidden="true" />
|
|
<div className="pointer-events-none absolute left-[10px] top-0 h-full w-0.5 bg-gradient-to-b from-blue-600 via-blue-400 to-transparent blur-[1px] dark:from-blue-400 dark:via-cyan-300" aria-hidden="true" />
|
|
<div className="space-y-4">
|
|
{children}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|