mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-01 00:24:20 +00:00
33 lines
784 B
TypeScript
33 lines
784 B
TypeScript
import { IconCloud } from "@tabler/icons-react"
|
|
|
|
import { Button } from "@/styles/base-nova/ui/button"
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/styles/base-nova/ui/empty"
|
|
|
|
export default function EmptyOutline() {
|
|
return (
|
|
<Empty className="border border-dashed">
|
|
<EmptyHeader>
|
|
<EmptyMedia variant="icon">
|
|
<IconCloud />
|
|
</EmptyMedia>
|
|
<EmptyTitle>Cloud Storage Empty</EmptyTitle>
|
|
<EmptyDescription>
|
|
Upload files to your cloud storage to access them anywhere.
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
<EmptyContent>
|
|
<Button variant="outline" size="sm">
|
|
Upload Files
|
|
</Button>
|
|
</EmptyContent>
|
|
</Empty>
|
|
)
|
|
}
|