Empty/empty-standard-

PreviousNext

A empty/empty-standard- example

Docs
shadcnblocksblock

Preview

Loading preview…
code/example/empty/empty-standard-6.tsx
"use client";

import {
  Empty,
  EmptyDescription,
  EmptyHeader,
  EmptyTitle,
} from "@/components/ui/empty";

export const title = "Empty without Icon";

const Example = () => (
  <Empty>
    <EmptyHeader>
      <EmptyTitle>No content available</EmptyTitle>
      <EmptyDescription>
        There's nothing to display at the moment. Please check back later.
      </EmptyDescription>
    </EmptyHeader>
  </Empty>
);

export default Example;

Installation

npx shadcn@latest add @shadcnblocks/empty-empty-standard-6

Usage

import { EmptyEmptyStandard6 } from "@/components/empty-empty-standard-6"
<EmptyEmptyStandard6 />