import { Button } from "@/components/ui/button"; import { Wallet } from "lucide-react"; import { ArrowUpRight } from "lucide-react"; const MODEL_LIMITS_DOCS_URL = "https://docs.getbifrost.ai/features/governance"; interface ModelLimitsEmptyStateProps { onAddClick: () => void; canCreate?: boolean; } export function ModelLimitsEmptyState({ onAddClick, canCreate = true }: ModelLimitsEmptyStateProps) { return (