Home / Function/ EmptyStateZeroItemsTable() — supabase Function Reference

EmptyStateZeroItemsTable() — supabase Function Reference

Architecture documentation for the EmptyStateZeroItemsTable() function in empty-state-zero-items-table.tsx from the supabase codebase.

Entity Profile

Relationship Graph

Source Code

apps/design-system/registry/default/example/empty-state-zero-items-table.tsx lines 3–27

export default function EmptyStateZeroItemsTable() {
  return (
    <Card className="w-full">
      <Table>
        <TableHeader>
          <TableRow>
            <TableHead className="text-foreground-muted">Name</TableHead>
            <TableHead className="text-foreground-muted">Created</TableHead>
            <TableHead className="text-foreground-muted">Updated</TableHead>
          </TableRow>
        </TableHeader>
        <TableBody>
          <TableRow className="[&>td]:hover:bg-inherit">
            <TableCell colSpan={3}>
              <p className="text-sm text-foreground">No results found</p>
              <p className="text-sm text-foreground-lighter">
                Your search for “test” did not return any results
              </p>
            </TableCell>
          </TableRow>
        </TableBody>
      </Table>
    </Card>
  )
}

Domain

Subdomains

Analyze Your Own Codebase

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

Try Supermodel Free