"use client"; import { Card, CardContent, EmptyState } from "@/components/ds"; import { AlertTriangle } from "lucide-react"; export function CrmScopeNotice({ title, description, alternatives, }: { title: string; description: string; alternatives?: { label: string; href: string }[]; }) { return ( {title} {description} {alternatives?.length ? ( {alternatives.map((a) => ( {a.label} ))} ) : null} ); } export function CrmPermissionDenied({ message }: { message?: string }) { return ( ); }
{description}