@tebuto/react-booking-widget
Version:
React Component for the Tebuto Booking Widget
17 lines (13 loc) • 470 B
TypeScript
import { JSX } from 'react';
type TebutoBookingWidgetConfiguration = {
therapistUUID: string;
backgroundColor?: string;
categories?: number[];
border?: boolean;
};
type TebutoBookingWidgetProps = {
noScriptText?: string;
} & TebutoBookingWidgetConfiguration;
declare function TebutoBookingWidget({ noScriptText, ...config }: TebutoBookingWidgetProps): JSX.Element;
export { TebutoBookingWidget };
export type { TebutoBookingWidgetConfiguration };