import { BookOpen, Github } from 'lucide-react' import { Badge, Button } from 'ui' import { BASE_PATH } from '@/lib/constants' interface ClientLibraryProps { language: string officialSupport?: boolean docsUrl?: string gitUrl?: string altIconName?: string } export const ClientLibrary = ({ language, officialSupport, docsUrl, gitUrl, altIconName, }: ClientLibraryProps) => { return (
{`${language}
{`${language}
{language} {!officialSupport && Community}
{docsUrl && ( )} {gitUrl && ( )}
) }