mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-05-21 18:55:16 +02:00
15 lines
545 B
TypeScript
15 lines
545 B
TypeScript
import { BellOff } from "lucide-react";
|
|
|
|
export function AnnouncementsEmptyState() {
|
|
return (
|
|
<div className="flex flex-col items-center justify-center py-12 text-center">
|
|
<div className="mb-3 flex h-12 w-12 items-center justify-center rounded-full bg-muted">
|
|
<BellOff className="h-5 w-5 text-muted-foreground" />
|
|
</div>
|
|
<h3 className="text-sm font-semibold">No announcements</h3>
|
|
<p className="mt-1 max-w-xs text-xs text-muted-foreground">
|
|
You're all caught up! New announcements will appear here.
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|