mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-30 08:04:18 +00:00
37 lines
984 B
TypeScript
37 lines
984 B
TypeScript
import { Avatar, AvatarFallback, AvatarImage } from "@/examples/base/ui/avatar"
|
|
import { Button } from "@/examples/base/ui/button"
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/examples/base/ui/empty"
|
|
|
|
export default function EmptyAvatar() {
|
|
return (
|
|
<Empty>
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="default">
|
|
<Avatar className="size-12">
|
|
<AvatarImage
|
|
src="https://github.com/shadcn.png"
|
|
className="grayscale"
|
|
/>
|
|
<AvatarFallback>LR</AvatarFallback>
|
|
</Avatar>
|
|
</EmptyMedia>
|
|
<EmptyTitle>User Offline</EmptyTitle>
|
|
<EmptyDescription>
|
|
This user is currently offline. You can leave a message to notify them
|
|
or try again later.
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
<EmptyContent>
|
|
<Button size="sm">Leave Message</Button>
|
|
</EmptyContent>
|
|
</Empty>
|
|
)
|
|
}
|