mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-07-02 17:08:39 +00:00
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
import { ChevronRightIcon, ExternalLinkIcon } from "lucide-react"
|
|
|
|
import {
|
|
Item,
|
|
ItemActions,
|
|
ItemContent,
|
|
ItemDescription,
|
|
ItemTitle,
|
|
} from "@/styles/base-nova/ui/item"
|
|
|
|
export function ItemLink() {
|
|
return (
|
|
<div className="flex w-full max-w-md flex-col gap-4">
|
|
<Item render={<a href="#" />}>
|
|
<ItemContent>
|
|
<ItemTitle>Visit our documentation</ItemTitle>
|
|
<ItemDescription>
|
|
Learn how to get started with our components.
|
|
</ItemDescription>
|
|
</ItemContent>
|
|
<ItemActions>
|
|
<ChevronRightIcon className="size-4" />
|
|
</ItemActions>
|
|
</Item>
|
|
<Item
|
|
variant="outline"
|
|
render={<a href="#" target="_blank" rel="noopener noreferrer" />}
|
|
>
|
|
<ItemContent>
|
|
<ItemTitle>External resource</ItemTitle>
|
|
<ItemDescription>
|
|
Opens in a new tab with security attributes.
|
|
</ItemDescription>
|
|
</ItemContent>
|
|
<ItemActions>
|
|
<ExternalLinkIcon className="size-4" />
|
|
</ItemActions>
|
|
</Item>
|
|
</div>
|
|
)
|
|
}
|