A vertical timeline component for displaying chronological events. Each entry supports an icon, title, description, and timestamp with connecting lines.
Simple
import { SimpleTimeline } from '@primstack/ui/timeline'
<SimpleTimeline items={[
{ title: 'Created', date: 'Jan 1', status: 'success' },
{ title: 'In Review', date: 'Jan 5', status: 'info' },
{ title: 'Deployed', date: 'Jan 10', status: 'default' },
]} />