mirror of
https://github.com/supabase/supabase.git
synced 2026-06-21 21:12:49 +08:00
* Update Badge.tsx * refactor apps with new props * Update APIKeys.tsx * format * remove old code
55 lines
1.4 KiB
TypeScript
55 lines
1.4 KiB
TypeScript
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 (
|
|
<div className="flex items-start space-x-6">
|
|
<img
|
|
src={`${BASE_PATH}/img/libraries/${
|
|
altIconName ? `${altIconName}-icon.svg` : `${language.toLowerCase()}-icon.svg`
|
|
}`}
|
|
alt={`${language} logo`}
|
|
width="21"
|
|
/>
|
|
<div className="space-y-4">
|
|
<div>
|
|
<h5 className="flex items-center gap-2 text-base text-foreground">
|
|
{language} {!officialSupport && <Badge variant="brand">Community</Badge>}
|
|
</h5>
|
|
</div>
|
|
<div className="flex gap-2">
|
|
{docsUrl && (
|
|
<a href={docsUrl} target="_blank" rel="noreferrer">
|
|
<Button icon={<IconBookOpen />} type="default">
|
|
Docs
|
|
</Button>
|
|
</a>
|
|
)}
|
|
<a href={gitUrl} target="_blank" rel="noreferrer">
|
|
<Button icon={<IconGitHub />} type="default">
|
|
See GitHub
|
|
</Button>
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ClientLibrary
|