website-session-kit
Version:
A modular and extensible session management toolkit for modern websites.
19 lines (18 loc) • 672 B
TypeScript
interface Props {
highlight: string;
price: string;
salesPrice?: string;
installments?: number;
buttonLabel: string;
checkoutLink: string;
afterButton?: string;
ctaItems?: string[];
className?: string;
grafismColor?: string;
lineColor?: string;
lpBgColor?: string;
lpHeight?: string;
lpClassName?: string;
}
declare const CtaWithItemsAndPriceSection: ({ highlight, price, salesPrice, installments, buttonLabel, checkoutLink, afterButton, ctaItems, className, grafismColor, lineColor, lpBgColor, lpHeight, lpClassName, }: Props) => import("react/jsx-runtime").JSX.Element;
export default CtaWithItemsAndPriceSection;