export default class GoogleCalendar {
    public static defaultWidth = 600;
    public static defaultHeight = 500;

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

    render() {
        const iframe = `<iframe src="${this.url}" style="border-width:0" width="${this.width}" height="${this.height}" frameborder="0" scrolling="no"></iframe>`;
        return `<div class="GoogleCalendarComponent">${iframe}</div>`;
    }
}
