UNPKG

@useloops/design-system

Version:

The official React based Loops design system

13 lines (10 loc) 298 B
import { FunctionComponent } from 'react'; type TrialCardProps = { promoHeadline: string; promoDescription: string; ctaText: string; ctaFn: () => void; }; declare const TrialCard: FunctionComponent<TrialCardProps>; export { TrialCard as default }; export type { TrialCardProps };