@grafana/ui
Version:
Grafana Components Library
9 lines (8 loc) • 407 B
TypeScript
export interface CallToActionCardProps {
message?: string | JSX.Element;
callToActionElement: JSX.Element;
footer?: string | JSX.Element;
className?: string;
}
/** @deprecated Use <EmptyState variant="call-to-action" /> instead */
export declare const CallToActionCard: ({ message, callToActionElement, footer, className }: CallToActionCardProps) => import("react/jsx-runtime").JSX.Element;