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