'use client'; import { cn } from '@/lib/utils'; type InlineErrorProps = { message: string; onDismiss?: () => void; className?: string; }; export function InlineError({ message, onDismiss, className }: InlineErrorProps) { return (
{message} {onDismiss && ( )}
); }