UNPKG

website-session-kit

Version:

A modular and extensible session management toolkit for modern websites.

20 lines (19 loc) 720 B
import React from 'react'; interface Props { children: React.ReactNode; highlight: string; buttonLabel: string; checkoutLink: string; afterButton?: string; className?: string; buttonBgColor?: string; buttonTextColor?: string; buttonBorderColor?: string; lineColor?: string; grafismColor?: string; lpBgColor?: string; lpHeight?: string; lpClassName?: string; } declare const CtaCustomSection: ({ children, highlight, buttonLabel, checkoutLink, afterButton, className, buttonBgColor, buttonTextColor, buttonBorderColor, lineColor, grafismColor, lpBgColor, lpHeight, lpClassName, }: Props) => import("react/jsx-runtime").JSX.Element; export default CtaCustomSection;