import { Button } from "@/components/ui/button"; import { ArrowUpRight, SlidersHorizontal } from "lucide-react"; const PRICING_OVERRIDES_DOCS_URL = "https://docs.getbifrost.ai/features/governance/custom-pricing"; interface PricingOverridesEmptyStateProps { onCreateClick: () => void; } export function PricingOverridesEmptyState({ onCreateClick }: PricingOverridesEmptyStateProps) { return (

Pricing overrides customize cost tracking per scope

Define custom per-token prices for specific providers, keys, or virtual keys to accurately reflect your negotiated rates.
); }