mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
* feat: add rhea * fix: blocks * feat: build chat example * fix * fix: sidebar * fix * feat: update home * fix * fix * fix * feat: optimizine fonts * feat * fix * fix * fix * fix * fix * fix * fix: font in preview * fix
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { Add01Icon } from "@hugeicons/core-free-icons"
|
|
import { HugeiconsIcon } from "@hugeicons/react"
|
|
|
|
import { Button } from "@/styles/base-rhea/ui/button"
|
|
import { Card, CardContent } from "@/styles/base-rhea/ui/card"
|
|
import {
|
|
Empty,
|
|
EmptyContent,
|
|
EmptyDescription,
|
|
EmptyHeader,
|
|
EmptyMedia,
|
|
EmptyTitle,
|
|
} from "@/styles/base-rhea/ui/empty"
|
|
|
|
export function EmptyDistributeTrack() {
|
|
return (
|
|
<Card>
|
|
<CardContent>
|
|
<Empty className="p-4">
|
|
<EmptyMedia variant="icon">
|
|
<HugeiconsIcon icon={Add01Icon} strokeWidth={2} />
|
|
</EmptyMedia>
|
|
<EmptyHeader>
|
|
<EmptyTitle>Distribute Track</EmptyTitle>
|
|
<EmptyDescription>
|
|
Upload your first master to start reaching listeners on Spotify,
|
|
Apple Music, and more.
|
|
</EmptyDescription>
|
|
</EmptyHeader>
|
|
<EmptyContent>
|
|
<Button>Create Release</Button>
|
|
</EmptyContent>
|
|
</Empty>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|