export default class GoogleForm {
    public static defaultWidth = 670;
    public static defaultHeight = 2700;

    constructor(
        private url: string,
        private height: number,
        private width: number,
    ) {
    }

    render() {
        const iframe = `<iframe src="${this.url}" width="${this.width}" height="${this.height}" frameborder="0" marginheight="0" marginwidth="0">Načítání...</iframe>`;
        return `<div class="GoogleFormComponent">${iframe}</div>`;
    }
}
