import type { ComponentProps } from 'react' import { cn } from '@/lib/utils' // Shared raw-log viewer: no bg, hairline border, tight padding, small mono. // One style everywhere we surface logs. Pass a max-h-* via className. export function LogView({ className, ...props }: ComponentProps<'div'>) { return (
) }