15 lines
446 B
TypeScript
15 lines
446 B
TypeScript
'use client';
|
|
|
|
import { Alert, AlertDescription, AlertTitle } from '@/components/ui/alert';
|
|
import { Icons } from '@/components/icons';
|
|
|
|
export default function PieStatsError({ error }: { error: Error }) {
|
|
return (
|
|
<Alert variant='destructive'>
|
|
<Icons.alertCircle className='h-4 w-4' />
|
|
<AlertTitle>Error</AlertTitle>
|
|
<AlertDescription>Failed to load pie statistics: {error.message}</AlertDescription>
|
|
</Alert>
|
|
);
|
|
}
|