Files
supabase/apps/studio/components/interfaces/Home/ClientLibrary.tsx
Danny White 031b227165 studio(chore): badge component defrag (#40118)
* component clean up

* optically center

* docs and type size

* code badge variant

* sensible defaults

* fix product menu flex

* badge sweep

* new project badges

* logs

* compute badge

* studio badge sweep

* www sweep

* docs sweep

* clean up

* fixes

* cleanup

* fixes

* better docs

* fixes

* misc fixes

* consistency

* Minor fixes for issues i found

* simplify mt-0

* mt simplification

* remaining optical alignment

---------

Co-authored-by: Joshen Lim <joshenlimek@gmail.com>
2025-12-02 11:15:50 +11:00

65 lines
1.8 KiB
TypeScript

import { BookOpen, Github } from 'lucide-react'
import { BASE_PATH } from 'lib/constants'
import { Badge, Button } from 'ui'
interface ClientLibraryProps {
language: string
officialSupport?: boolean
docsUrl?: string
gitUrl?: string
altIconName?: string
}
export const ClientLibrary = ({
language,
officialSupport,
docsUrl,
gitUrl,
altIconName,
}: ClientLibraryProps) => {
return (
<div className="flex items-start md:space-x-6">
<img
src={`${BASE_PATH}/img/libraries/${
altIconName ? `${altIconName}-icon.svg` : `${language.toLowerCase()}-icon.svg`
}`}
alt={`${language} logo`}
width="21"
className="hidden md:block"
/>
<div className="space-y-4">
<div className="flex items-center gap-2">
<img
src={`${BASE_PATH}/img/libraries/${
altIconName ? `${altIconName}-icon.svg` : `${language.toLowerCase()}-icon.svg`
}`}
alt={`${language} logo`}
width="21"
className="block md:hidden"
/>
<h5 className="flex items-center gap-2 text-base text-foreground">
{language} {!officialSupport && <Badge variant="success">Community</Badge>}
</h5>
</div>
<div className="flex gap-2">
{docsUrl && (
<a href={docsUrl} target="_blank" rel="noreferrer">
<Button icon={<BookOpen />} type="default">
Docs
</Button>
</a>
)}
{gitUrl && (
<a href={gitUrl} target="_blank" rel="noreferrer">
<Button icon={<Github />} type="default">
<span className="hidden md:inline">See</span> GitHub
</Button>
</a>
)}
</div>
</div>
</div>
)
}