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
140 lines
4.5 KiB
TypeScript
140 lines
4.5 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,
|
|
CardFooter,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/styles/base-rhea/ui/card"
|
|
import { Field, FieldGroup, FieldLabel } from "@/styles/base-rhea/ui/field"
|
|
import {
|
|
InputGroup,
|
|
InputGroupAddon,
|
|
InputGroupInput,
|
|
InputGroupText,
|
|
} from "@/styles/base-rhea/ui/input-group"
|
|
import { Item, ItemContent } from "@/styles/base-rhea/ui/item"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/styles/base-rhea/ui/select"
|
|
import { Separator } from "@/styles/base-rhea/ui/separator"
|
|
|
|
const FROM_ACCOUNTS = [
|
|
{ label: "Main Checking (··8402) — $12,450.00", value: "checking" },
|
|
{ label: "Business (··7731) — $8,920.00", value: "business" },
|
|
]
|
|
|
|
const TO_ACCOUNTS = [
|
|
{ label: "High Yield Savings (··1192) — $42,100.00", value: "savings" },
|
|
{ label: "Investment (··3349) — $18,200.00", value: "investment" },
|
|
]
|
|
|
|
export function TransferFunds() {
|
|
return (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Transfer Funds</CardTitle>
|
|
<CardDescription>
|
|
Move money between your connected accounts.
|
|
</CardDescription>
|
|
<CardAction>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
className="bg-muted"
|
|
aria-label="Dismiss transfer funds"
|
|
>
|
|
<HugeiconsIcon icon={Cancel01Icon} strokeWidth={2} />
|
|
</Button>
|
|
</CardAction>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<FieldGroup>
|
|
<Field>
|
|
<FieldLabel htmlFor="transfer-amount">
|
|
Amount to Transfer
|
|
</FieldLabel>
|
|
<InputGroup>
|
|
<InputGroupAddon>
|
|
<InputGroupText>$</InputGroupText>
|
|
</InputGroupAddon>
|
|
<InputGroupInput id="transfer-amount" defaultValue="1,200.00" />
|
|
</InputGroup>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="from-account">From Account</FieldLabel>
|
|
<Select items={FROM_ACCOUNTS} defaultValue="checking">
|
|
<SelectTrigger id="from-account" className="w-full">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
{FROM_ACCOUNTS.map((item) => (
|
|
<SelectItem key={item.value} value={item.value}>
|
|
{item.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="to-account">To Account</FieldLabel>
|
|
<Select items={TO_ACCOUNTS} defaultValue="savings">
|
|
<SelectTrigger id="to-account" className="w-full">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
{TO_ACCOUNTS.map((item) => (
|
|
<SelectItem key={item.value} value={item.value}>
|
|
{item.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
</Field>
|
|
<Item variant="muted" className="flex-col items-stretch">
|
|
<ItemContent className="gap-3">
|
|
<div className="flex items-center justify-between">
|
|
<span className="text-sm text-muted-foreground">
|
|
Estimated arrival
|
|
</span>
|
|
<span className="text-sm font-medium">Today, Apr 14</span>
|
|
</div>
|
|
<Separator />
|
|
<div className="flex items-center justify-between">
|
|
<span className="text-sm text-muted-foreground">
|
|
Transaction fee
|
|
</span>
|
|
<span className="text-sm font-medium tabular-nums">$0.00</span>
|
|
</div>
|
|
<Separator />
|
|
<div className="flex items-center justify-between">
|
|
<span className="text-sm font-medium">Total amount</span>
|
|
<span className="text-sm font-semibold tabular-nums">
|
|
$1,200.00
|
|
</span>
|
|
</div>
|
|
</ItemContent>
|
|
</Item>
|
|
</FieldGroup>
|
|
</CardContent>
|
|
<CardFooter>
|
|
<Button className="w-full">Confirm Transfer</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
)
|
|
}
|