import { IconX } from '@tabler/icons-react' import { Button } from '@/client/components/ui/button' import { ComposerBannerShell } from './ComposerBanner' type ChatErrorBannerProps = { error: string onDismiss: () => void } export function ChatErrorBanner({ error, onDismiss }: ChatErrorBannerProps) { return ( {error} ) }