import { ReactNode } from 'react'; import { Box } from './Box'; import { Surface } from './Surface'; interface ActivityFeedItemProps { icon: ReactNode; content: ReactNode; timestamp: string; } export function ActivityFeedItem({ icon, content, timestamp, }: ActivityFeedItemProps) { return ( {icon} {content} {timestamp} ); }