import { FC } from 'react' import { Typography, IconBookOpen, IconGitHub, Button, Badge } from '@supabase/ui' interface Props { language: string officialSupport?: boolean releaseState?: string docsUrl?: string gitUrl: string } const ClientLibrary: FC = ({ language, releaseState, officialSupport, docsUrl, gitUrl }) => { return (
{`${language}
{language} {releaseState && {`Public ${releaseState}`}}

{officialSupport ? 'This library is officially supported' : 'This library is community supported'}

{docsUrl && ( )}
) } export default ClientLibrary