import { createBlock } from '@typebot.io/forge' import { CalComLogo } from './logo' import { bookEvent } from './actions/bookEvent' import { baseOptions } from './baseOptions' export const calComBlock = createBlock({ id: 'bls-cal', name: 'BLS cal', tags: ['calendar', 'scheduling', 'meetings'], LightLogo: CalComLogo, options: baseOptions, actions: [bookEvent], })