import classNames from 'classnames'; import { format } from 'date-fns'; import type { ReactNode } from 'react'; interface EventViewerRowProps { isActive: boolean; onClick: () => void; icon: ReactNode; content: ReactNode; timestamp?: string; } export function EventViewerRow({ isActive, onClick, icon, content, timestamp, }: EventViewerRowProps) { return (