mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 08:58:36 +00:00
34 lines
814 B
TypeScript
34 lines
814 B
TypeScript
import { Button } from "@/examples/base/ui/button"
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/examples/base/ui/empty"
|
|
import { FolderIcon, PlusIcon } from "lucide-react"
|
|
|
|
export function EmptyWithIcon() {
|
|
return (
|
|
<Empty className="border">
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="icon">
|
|
<FolderIcon />
|
|
</EmptyMedia>
|
|
<EmptyTitle>Nothing to see here</EmptyTitle>
|
|
<EmptyDescription>
|
|
No posts have been created yet. Get started by{" "}
|
|
<a href="#">creating your first post</a>.
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
<EmptyContent>
|
|
<Button variant="outline">
|
|
<PlusIcon />
|
|
New Post
|
|
</Button>
|
|
</EmptyContent>
|
|
</Empty>
|
|
)
|
|
}
|