UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

20 lines 689 B
import { ReactNode } from 'react'; export type ActionRequiredCardProps = { title: ReactNode; description: ReactNode; actionNode: ReactNode; iconType: string; count?: number; isLoading?: false; } | { isLoading: true; }; /** * The ActionRequiredCard component renders a generic card that represents some action that a user must take to gain * download access to a file. * @param props * @returns */ export declare function ActionRequiredCard(props: ActionRequiredCardProps): import("react/jsx-runtime").JSX.Element; export declare function LoadingActionRequiredCard(): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ActionRequiredCard.d.ts.map