@grafana/ui
Version:
Grafana Components Library
13 lines (12 loc) • 529 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.
*
* https://developers.grafana.com/ui/latest/index.html?path=/docs/information-deprecated-calltoactioncard--docs
*/
export declare const CallToActionCard: ({ message, callToActionElement, footer, className }: CallToActionCardProps) => import("react/jsx-runtime").JSX.Element;