mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
19 lines
421 B
TypeScript
19 lines
421 B
TypeScript
import { BookOpenIcon } from "lucide-react";
|
|
|
|
import { Badge } from "@app/components/v3";
|
|
|
|
type TDocumentationLinkBadgeProps = {
|
|
href: string;
|
|
};
|
|
|
|
export function DocumentationLinkBadge({ href }: TDocumentationLinkBadgeProps) {
|
|
return (
|
|
<Badge variant="neutral" asChild>
|
|
<a href={href} target="_blank" rel="noopener noreferrer">
|
|
<BookOpenIcon />
|
|
Documentation
|
|
</a>
|
|
</Badge>
|
|
);
|
|
}
|