import { Button } from "@/components/ui/button"; import { Building } from "lucide-react"; import { ArrowUpRight } from "lucide-react"; const TEAMS_DOCS_URL = "https://docs.getbifrost.ai/features/governance/virtual-keys#teams"; interface TeamsEmptyStateProps { onAddClick: () => void; canCreate?: boolean; } export function TeamsEmptyState({ onAddClick, canCreate = true }: TeamsEmptyStateProps) { return (

Teams organize users with shared budgets and access

Create teams to group users, assign customer accounts, and set budgets and rate limits at the team level.
); }