@nuskin/react-loyalty-elements
Version:
A React based component library for reusable Nextgen Loyalty component
22 lines (21 loc) • 559 B
TypeScript
export type RewardModalProps = {
amountShow?: number | string;
show: boolean;
close: () => void;
bannerImage?: string;
translationConfig: {
header?: string;
};
learnMoreConfig: {
header?: string;
learnMore: string;
learnMoreLink?: string | undefined;
cardTwoDescription: string;
cardTwoVoucherAmount: string;
cardOneDescription: string;
cardOneVoucherAmount: string;
tagLine: string;
loyaltyLogoWhite: string;
loyaltyBanner: string;
};
};