mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
159 lines
5.7 KiB
TypeScript
159 lines
5.7 KiB
TypeScript
import { Button } from "@/styles/radix-nova/ui/button"
|
|
import { Checkbox } from "@/styles/radix-nova/ui/checkbox"
|
|
import {
|
|
Field,
|
|
FieldDescription,
|
|
FieldGroup,
|
|
FieldLabel,
|
|
FieldLegend,
|
|
FieldSeparator,
|
|
FieldSet,
|
|
} from "@/styles/radix-nova/ui/field"
|
|
import { Input } from "@/styles/radix-nova/ui/input"
|
|
import {
|
|
Select,
|
|
SelectContent,
|
|
SelectGroup,
|
|
SelectItem,
|
|
SelectTrigger,
|
|
SelectValue,
|
|
} from "@/styles/radix-nova/ui/select"
|
|
import { Textarea } from "@/styles/radix-nova/ui/textarea"
|
|
|
|
export function FieldDemo() {
|
|
return (
|
|
<div className="w-full max-w-md rounded-xl border p-6">
|
|
<form>
|
|
<FieldGroup>
|
|
<FieldSet>
|
|
<FieldLegend>Payment Method</FieldLegend>
|
|
<FieldDescription>
|
|
All transactions are secure and encrypted
|
|
</FieldDescription>
|
|
<FieldGroup>
|
|
<Field>
|
|
<FieldLabel htmlFor="checkout-7j9-card-name-43j">
|
|
Name on Card
|
|
</FieldLabel>
|
|
<Input
|
|
id="checkout-7j9-card-name-43j"
|
|
placeholder="John Doe"
|
|
required
|
|
/>
|
|
</Field>
|
|
<div className="grid grid-cols-3 gap-4">
|
|
<Field className="col-span-2">
|
|
<FieldLabel htmlFor="checkout-7j9-card-number-uw1">
|
|
Card Number
|
|
</FieldLabel>
|
|
<Input
|
|
id="checkout-7j9-card-number-uw1"
|
|
placeholder="1234 5678 9012 3456"
|
|
required
|
|
/>
|
|
<FieldDescription>
|
|
Enter your 16-digit number.
|
|
</FieldDescription>
|
|
</Field>
|
|
<Field className="col-span-1">
|
|
<FieldLabel htmlFor="checkout-7j9-cvv">CVV</FieldLabel>
|
|
<Input id="checkout-7j9-cvv" placeholder="123" required />
|
|
</Field>
|
|
</div>
|
|
<div className="grid grid-cols-2 gap-4">
|
|
<Field>
|
|
<FieldLabel htmlFor="checkout-7j9-exp-month-ts6">
|
|
Month
|
|
</FieldLabel>
|
|
<Select defaultValue="">
|
|
<SelectTrigger id="checkout-7j9-exp-month-ts6">
|
|
<SelectValue placeholder="MM" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
<SelectItem value="01">01</SelectItem>
|
|
<SelectItem value="02">02</SelectItem>
|
|
<SelectItem value="03">03</SelectItem>
|
|
<SelectItem value="04">04</SelectItem>
|
|
<SelectItem value="05">05</SelectItem>
|
|
<SelectItem value="06">06</SelectItem>
|
|
<SelectItem value="07">07</SelectItem>
|
|
<SelectItem value="08">08</SelectItem>
|
|
<SelectItem value="09">09</SelectItem>
|
|
<SelectItem value="10">10</SelectItem>
|
|
<SelectItem value="11">11</SelectItem>
|
|
<SelectItem value="12">12</SelectItem>
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
</Field>
|
|
<Field>
|
|
<FieldLabel htmlFor="checkout-7j9-exp-year-f59">
|
|
Year
|
|
</FieldLabel>
|
|
<Select defaultValue="">
|
|
<SelectTrigger id="checkout-7j9-exp-year-f59">
|
|
<SelectValue placeholder="YYYY" />
|
|
</SelectTrigger>
|
|
<SelectContent>
|
|
<SelectGroup>
|
|
<SelectItem value="2024">2024</SelectItem>
|
|
<SelectItem value="2025">2025</SelectItem>
|
|
<SelectItem value="2026">2026</SelectItem>
|
|
<SelectItem value="2027">2027</SelectItem>
|
|
<SelectItem value="2028">2028</SelectItem>
|
|
<SelectItem value="2029">2029</SelectItem>
|
|
</SelectGroup>
|
|
</SelectContent>
|
|
</Select>
|
|
</Field>
|
|
</div>
|
|
</FieldGroup>
|
|
</FieldSet>
|
|
<FieldSeparator />
|
|
<FieldSet>
|
|
<FieldLegend>Billing Address</FieldLegend>
|
|
<FieldDescription>
|
|
The billing address associated with your payment method
|
|
</FieldDescription>
|
|
<FieldGroup>
|
|
<Field orientation="horizontal">
|
|
<Checkbox
|
|
id="checkout-7j9-same-as-shipping-wgm"
|
|
defaultChecked
|
|
/>
|
|
<FieldLabel
|
|
htmlFor="checkout-7j9-same-as-shipping-wgm"
|
|
className="font-normal"
|
|
>
|
|
Same as shipping address
|
|
</FieldLabel>
|
|
</Field>
|
|
</FieldGroup>
|
|
</FieldSet>
|
|
<FieldSeparator />
|
|
<FieldSet>
|
|
<FieldGroup>
|
|
<Field>
|
|
<FieldLabel htmlFor="checkout-7j9-optional-comments">
|
|
Comments
|
|
</FieldLabel>
|
|
<Textarea
|
|
id="checkout-7j9-optional-comments"
|
|
placeholder="Add any additional comments"
|
|
/>
|
|
</Field>
|
|
</FieldGroup>
|
|
</FieldSet>
|
|
<Field orientation="horizontal">
|
|
<Button type="submit">Submit</Button>
|
|
<Button variant="outline" type="button">
|
|
Cancel
|
|
</Button>
|
|
</Field>
|
|
</FieldGroup>
|
|
</form>
|
|
</div>
|
|
)
|
|
}
|