import * as React from 'react' import { Codicon, type CodiconProps } from '@/components/ui/codicon' import { cn } from '@/lib/utils' /** * Rounded-card shell for fenced code (and any equivalent: diffs, raw payloads, * etc.) sized for the conversation column. Mirrors the expanded tool-row * pattern so code blocks read as the same family of artifact. */ function CodeCard({ className, ...props }: React.ComponentProps<'div'>) { return (
) } function CodeCardHeader({ className, ...props }: React.ComponentProps<'div'>) { return ( ) } function CodeCardTitle({ className, children, ...props }: React.ComponentProps<'span'>) { return ( {children} ) } function CodeCardIcon({ className, ...props }: CodiconProps) { return (