mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-01 08:34:12 +00:00
50 lines
1.5 KiB
TypeScript
50 lines
1.5 KiB
TypeScript
import { Button } from "@/examples/base/ui/button"
|
|
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/examples/base/ui/card"
|
|
import { ChevronRightIcon } from "lucide-react"
|
|
|
|
export function CardSmall() {
|
|
const featureName = "Scheduled reports"
|
|
|
|
return (
|
|
<Card size="sm" className="mx-auto w-full max-w-xs">
|
|
<CardHeader>
|
|
<CardTitle>{featureName}</CardTitle>
|
|
<CardDescription>
|
|
Weekly snapshots. No more manual exports.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<ul className="grid gap-2 py-2 text-sm">
|
|
<li className="flex gap-2">
|
|
<ChevronRightIcon className="mt-0.5 size-4 shrink-0 text-muted-foreground" />
|
|
<span>Choose a schedule (daily, or weekly).</span>
|
|
</li>
|
|
<li className="flex gap-2">
|
|
<ChevronRightIcon className="mt-0.5 size-4 shrink-0 text-muted-foreground" />
|
|
<span>Send to channels or specific teammates.</span>
|
|
</li>
|
|
<li className="flex gap-2">
|
|
<ChevronRightIcon className="mt-0.5 size-4 shrink-0 text-muted-foreground" />
|
|
<span>Include charts, tables, and key metrics.</span>
|
|
</li>
|
|
</ul>
|
|
</CardContent>
|
|
<CardFooter className="flex-col gap-2">
|
|
<Button size="sm" className="w-full">
|
|
Set up scheduled reports
|
|
</Button>
|
|
<Button variant="outline" size="sm" className="w-full">
|
|
See what's new
|
|
</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
)
|
|
}
|