kv-music/components/app/empty-state.tsx
Eduard Prigoana 2942669f53 main
2025-09-30 22:36:04 +03:00

16 lines
485 B
TypeScript

import { Music } from "lucide-react"
interface EmptyStateProps {
title: string
description: string
}
export const EmptyState = ({ title, description }: EmptyStateProps) => {
return (
<div className="flex flex-col items-center justify-center p-12 text-center">
<Music className="mb-4 h-12 w-12 text-muted-foreground" />
<h3 className="mb-2 text-lg font-semibold">{title}</h3>
<p className="text-sm text-muted-foreground">{description}</p>
</div>
)
}