mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-22 20:25:44 +00:00
34 lines
881 B
TypeScript
34 lines
881 B
TypeScript
import { Button } from "@/examples/base/ui/button"
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/examples/base/ui/empty"
|
|
import { IconBell } from "@tabler/icons-react"
|
|
import { RefreshCcwIcon } from "lucide-react"
|
|
|
|
export function EmptyMuted() {
|
|
return (
|
|
<Empty className="h-full bg-muted/30">
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="icon">
|
|
<IconBell />
|
|
</EmptyMedia>
|
|
<EmptyTitle>No Notifications</EmptyTitle>
|
|
<EmptyDescription className="max-w-xs text-pretty">
|
|
You're all caught up. New notifications will appear here.
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
<EmptyContent>
|
|
<Button variant="outline">
|
|
<RefreshCcwIcon data-icon="inline-start" />
|
|
Refresh
|
|
</Button>
|
|
</EmptyContent>
|
|
</Empty>
|
|
)
|
|
}
|