import { BookOpenIcon } from "lucide-react"; import { Badge } from "@app/components/v3"; type TDocumentationLinkBadgeProps = { href: string; }; export function DocumentationLinkBadge({ href }: TDocumentationLinkBadgeProps) { return ( Documentation ); }