UNPKG

@qite/tide-booking-component

Version:

React Booking wizard & Booking product component for Tide

21 lines (19 loc) 442 B
export interface ImageWithTextSectionProps { title: string; hasBackground?: boolean; cards: ImageWithTextCardProps[]; } export interface ImageWithTextCardProps { imageSrc: string; imageAlt: string; title: string; section1Title: string; section1Text: string; section2Title: string; section2Text: string; buttonText: string; onButtonClick?: () => void; noCard?: boolean; fullImage?: boolean; reverse?: boolean; }