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
117 lines
2.8 KiB
TypeScript
117 lines
2.8 KiB
TypeScript
import { Cancel01Icon } from "@hugeicons/core-free-icons"
|
|
import { HugeiconsIcon } from "@hugeicons/react"
|
|
|
|
import { Button } from "@/styles/base-rhea/ui/button"
|
|
import {
|
|
Card,
|
|
CardAction,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/styles/base-rhea/ui/card"
|
|
import {
|
|
Item,
|
|
ItemContent,
|
|
ItemDescription,
|
|
ItemGroup,
|
|
ItemTitle,
|
|
} from "@/styles/base-rhea/ui/item"
|
|
|
|
const HOLDINGS = [
|
|
{
|
|
name: "Vanguard",
|
|
shares: "450 Shares",
|
|
amount: "$1,842.10",
|
|
data: [
|
|
{ q: "Q1", value: 380 },
|
|
{ q: "Q2", value: 420 },
|
|
{ q: "Q3", value: 390 },
|
|
{ q: "Q4", value: 652 },
|
|
],
|
|
},
|
|
{
|
|
name: "S&P 500 VOO",
|
|
shares: "112 Shares",
|
|
amount: "$928.40",
|
|
data: [
|
|
{ q: "Q1", value: 180 },
|
|
{ q: "Q2", value: 210 },
|
|
{ q: "Q3", value: 320 },
|
|
{ q: "Q4", value: 218 },
|
|
],
|
|
},
|
|
{
|
|
name: "Apple AAPL",
|
|
shares: "85 Shares",
|
|
amount: "$340.00",
|
|
data: [
|
|
{ q: "Q1", value: 60 },
|
|
{ q: "Q2", value: 70 },
|
|
{ q: "Q3", value: 120 },
|
|
{ q: "Q4", value: 90 },
|
|
],
|
|
},
|
|
{
|
|
name: "Realty Income",
|
|
shares: "320 Shares",
|
|
amount: "$1,139.50",
|
|
data: [
|
|
{ q: "Q1", value: 240 },
|
|
{ q: "Q2", value: 260 },
|
|
{ q: "Q3", value: 280 },
|
|
{ q: "Q4", value: 360 },
|
|
],
|
|
},
|
|
]
|
|
|
|
export function DividendIncome() {
|
|
return (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Q2 Dividend Income</CardTitle>
|
|
<CardDescription>
|
|
Quarterly dividend payouts across your portfolio holdings.
|
|
</CardDescription>
|
|
<CardAction>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
className="bg-muted"
|
|
aria-label="Dismiss dividend income"
|
|
>
|
|
<HugeiconsIcon icon={Cancel01Icon} strokeWidth={2} />
|
|
</Button>
|
|
</CardAction>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<ItemGroup>
|
|
{HOLDINGS.map((holding) => (
|
|
<Item key={holding.name} role="listitem" variant="muted">
|
|
<ItemContent>
|
|
<ItemTitle>{holding.name}</ItemTitle>
|
|
<ItemDescription>{holding.shares}</ItemDescription>
|
|
</ItemContent>
|
|
<div
|
|
className="hidden h-8 w-24 items-end gap-1 md:flex"
|
|
role="img"
|
|
aria-label={`${holding.name} quarterly dividends`}
|
|
>
|
|
{holding.data.map((item) => (
|
|
<div
|
|
key={item.q}
|
|
className="min-h-1 flex-1 rounded-t-sm bg-chart-2"
|
|
style={{
|
|
height: `${(item.value / Math.max(...holding.data.map((point) => point.value))) * 100}%`,
|
|
}}
|
|
/>
|
|
))}
|
|
</div>
|
|
</Item>
|
|
))}
|
|
</ItemGroup>
|
|
</CardContent>
|
|
</Card>
|
|
)
|
|
}
|