import { AlertCircle } from 'lucide-react'; import { cn } from '@/lib/utils'; interface ErrorDisplayProps extends React.HTMLAttributes { error: string; } export default function ErrorDisplay({ error, className, ...props }: ErrorDisplayProps) { return (

{error}

存储清理功能仅适用于标准网页

); }