Home / Function/ KeyRow() — supabase Function Reference

KeyRow() — supabase Function Reference

Architecture documentation for the KeyRow() function in ApiKeysTabContent.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/studio/components/interfaces/Connect/ApiKeysTabContent.tsx lines 12–23

function KeyRow({ label, value }: { label: ReactNode; value: string }) {
  return (
    <div className="flex flex-col gap-5 lg:grid lg:grid-cols-12">
      <div className="col-span-4">
        <h3 className="text-sm text-foreground">{label}</h3>
      </div>
      <div className="col-span-8">
        <Input readOnly copy className="font-mono" value={value} />
      </div>
    </div>
  )
}

Subdomains

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free