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
113 lines
3.3 KiB
TypeScript
113 lines
3.3 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,
|
|
FieldDescription,
|
|
FieldGroup,
|
|
FieldLabel,
|
|
} from "@/styles/base-rhea/ui/field"
|
|
import { Progress } from "@/styles/base-rhea/ui/progress"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/styles/base-rhea/ui/select"
|
|
import { Textarea } from "@/styles/base-rhea/ui/textarea"
|
|
|
|
const CURRENCIES = [
|
|
{ label: "USD — United States Dollar", value: "usd" },
|
|
{ label: "EUR — Euro", value: "eur" },
|
|
{ label: "GBP — British Pound", value: "gbp" },
|
|
{ label: "JPY — Japanese Yen", value: "jpy" },
|
|
]
|
|
|
|
export function PayoutThreshold() {
|
|
return (
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>Payout Threshold</CardTitle>
|
|
<CardDescription>
|
|
Set the minimum balance required before a payout is triggered.
|
|
</CardDescription>
|
|
<CardAction>
|
|
<Button
|
|
variant="ghost"
|
|
size="icon-sm"
|
|
className="bg-muted"
|
|
aria-label="Dismiss payout threshold"
|
|
>
|
|
<HugeiconsIcon icon={Cancel01Icon} strokeWidth={2} />
|
|
</Button>
|
|
</CardAction>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<FieldGroup>
|
|
<Field>
|
|
<FieldLabel htmlFor="preferred-currency">
|
|
Preferred Currency
|
|
</FieldLabel>
|
|
<Select items={CURRENCIES} defaultValue="usd">
|
|
<SelectTrigger id="preferred-currency" className="w-full">
|
|
<SelectValue />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
{CURRENCIES.map((item) => (
|
|
<SelectItem key={item.value} value={item.value}>
|
|
{item.label}
|
|
</SelectItem>
|
|
))}
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
</Field>
|
|
<Field>
|
|
<div className="flex items-baseline justify-between">
|
|
<FieldLabel id="min-payout-label">
|
|
Minimum Payout Amount
|
|
</FieldLabel>
|
|
<span className="text-2xl font-semibold tabular-nums">
|
|
$2500.00
|
|
</span>
|
|
</div>
|
|
<Progress
|
|
value={25}
|
|
aria-labelledby="min-payout-label"
|
|
aria-valuetext="$2,500 of $10,000"
|
|
/>
|
|
<div className="flex items-center justify-between">
|
|
<FieldDescription>$50 (MIN)</FieldDescription>
|
|
<FieldDescription>$10,000 (MAX)</FieldDescription>
|
|
</div>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="payout-notes">Notes</FieldLabel>
|
|
<Textarea
|
|
id="payout-notes"
|
|
placeholder="Add any notes for this payout configuration..."
|
|
className="min-h-[100px]"
|
|
/>
|
|
</Field>
|
|
</FieldGroup>
|
|
</CardContent>
|
|
<CardFooter>
|
|
<Button className="w-full">Save Threshold</Button>
|
|
</CardFooter>
|
|
</Card>
|
|
)
|
|
}
|