UNPKG

react-jotform

Version:

"A React component to embed the Jotform iframe"

15 lines (14 loc) 394 B
import React, { CSSProperties } from "react"; interface DefaultValues { [key: string]: string | boolean | number; } export interface JotformProps { src: string; defaults?: DefaultValues; title?: string; className?: string | undefined; style?: CSSProperties; scrolling?: boolean; } declare const Jotform: React.FC<JotformProps>; export default Jotform;