import { Link } from "@/components/ui/preskok-ui/link"
export function LinkPreskokDemo() {
return (
<div className="space-x-4">
<Link href="#" intent="primary">
Primary link
</Link>
<Link href="#" intent="secondary">
Secondary link
</Link>
<Link href="#" intent="unstyled">
Unstyled link
</Link>
</div>
)
}
Installation
pnpmnpmyarnbunpnpm dlx @preskok-org/ui@latest add link
Usage
import { Link } from "@/registry/preskok/ui/preskok-ui/link"
export function Example() {
return (
<Link href="#" intent="primary">
Docs
</Link>
)
}