14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
![]() |
import { createBlock } from '@typebot.io/forge'
|
||
|
import { CalComLogo } from './logo'
|
||
|
import { bookEvent } from './actions/bookEvent'
|
||
|
import { baseOptions } from './baseOptions'
|
||
|
|
||
|
export const calCom = createBlock({
|
||
|
id: 'cal-com',
|
||
|
name: 'Cal.com',
|
||
|
tags: ['calendar', 'scheduling', 'meetings'],
|
||
|
LightLogo: CalComLogo,
|
||
|
options: baseOptions,
|
||
|
actions: [bookEvent],
|
||
|
})
|