22 lines
694 B
TypeScript
22 lines
694 B
TypeScript
import { Puzzle } from 'lucide-react'
|
|
|
|
interface EmptyExtensionStateProps {
|
|
title?: string
|
|
description?: string
|
|
icon?: React.ReactNode
|
|
}
|
|
|
|
export default function EmptyExtensionState({
|
|
title = 'Ingen data \u00e4nnu',
|
|
description = 'Data kommer att visas h\u00e4r n\u00e4r det finns tillg\u00e4ngligt.',
|
|
icon,
|
|
}: EmptyExtensionStateProps) {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-16 text-center">
|
|
{icon ?? <Puzzle className="h-12 w-12 text-muted-foreground/40 mb-4" />}
|
|
<h3 className="text-lg font-medium text-foreground">{title}</h3>
|
|
<p className="text-sm text-muted-foreground mt-1 max-w-md">{description}</p>
|
|
</div>
|
|
)
|
|
}
|