import { ReactNode } from "react"; export interface DiffItem { /** * Custom css class name. */ className?: string; /** * Marks this item as a roadmap/not-yet-built placeholder: swaps the * checkmark and title to the danger color instead of chrome. */ placeholder?: boolean; /** * Item title. */ title: string; /** * Item body content. */ children: ReactNode; }