mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-11 09:51:40 +00:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { BadgeCheckIcon, ChevronRightIcon } from "lucide-react"
|
|
|
|
import { Button } from "@/styles/radix-nova/ui/button"
|
|
import {
|
|
Item,
|
|
ItemActions,
|
|
ItemContent,
|
|
ItemDescription,
|
|
ItemMedia,
|
|
ItemTitle,
|
|
} from "@/styles/radix-nova/ui/item"
|
|
|
|
export function ItemDemo() {
|
|
return (
|
|
<div className="flex w-full max-w-md flex-col gap-6">
|
|
<Item variant="outline">
|
|
<ItemContent>
|
|
<ItemTitle>Two-factor authentication</ItemTitle>
|
|
<ItemDescription className="text-pretty xl:hidden 2xl:block">
|
|
Verify via email or phone number.
|
|
</ItemDescription>
|
|
</ItemContent>
|
|
<ItemActions>
|
|
<Button size="sm">Enable</Button>
|
|
</ItemActions>
|
|
</Item>
|
|
<Item variant="outline" size="sm" asChild>
|
|
<a href="#">
|
|
<ItemMedia>
|
|
<BadgeCheckIcon className="size-5" />
|
|
</ItemMedia>
|
|
<ItemContent>
|
|
<ItemTitle>Your profile has been verified.</ItemTitle>
|
|
</ItemContent>
|
|
<ItemActions>
|
|
<ChevronRightIcon className="size-4" />
|
|
</ItemActions>
|
|
</a>
|
|
</Item>
|
|
</div>
|
|
)
|
|
}
|