export function OrgMode({ className }: { className?: string }) { const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1"; return ( ); } export function Markdown({ className }: { className?: string }) { const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1"; return ( ); } export function Pdf({ className }: { className?: string }) { const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1"; return ( ); } export function Word({ className }: { className?: string }) { const classes = className ?? "w-6 h-6 text-muted-foreground inline-flex mr-1"; return ( ); }