@grafana/ui
Version:
Grafana Components Library
10 lines (9 loc) • 355 B
TypeScript
import React from 'react';
import { Themeable } from '../../types/theme';
export interface CallToActionCardProps extends Themeable {
message?: string | JSX.Element;
callToActionElement: JSX.Element;
footer?: string | JSX.Element;
className?: string;
}
export declare const CallToActionCard: React.FunctionComponent<CallToActionCardProps>;