react-calendly
Version:
Calendly integration for React apps
22 lines (21 loc) • 615 B
TypeScript
import * as React from "react";
import "../../calendly-widget.css";
import { PageSettings, Prefill, Utm, IframeTitle, LoadingSpinner } from "../../calendly";
export interface Props {
url: string;
prefill?: Prefill;
utm?: Utm;
styles?: React.CSSProperties | undefined;
pageSettings?: PageSettings;
iframeTitle?: IframeTitle;
LoadingSpinner?: LoadingSpinner;
className?: string;
}
declare class InlineWidget extends React.Component<Props, {
isLoading: boolean;
}> {
constructor(props: Props);
private onLoad;
render(): React.JSX.Element;
}
export default InlineWidget;