The Outlook calendar connect button is used to effortlessly syncs a user’s outlook calendar. This allows users to create, view and edit events, with options available for type and time all from the platform.

Below code snippet can be used to render the Google calendar connect button

import { Connect } from "@calcom/atoms";

export default function ConnectCalendar() {
  return (
    <main>
      <Connect.OutlookCalendar />
    </main>
  )
}

For a demonstration of the Google calendar connect integration, please refer to the video below.

Outlook calendar connect supports integration for both single and multiple users. The above video demonstration showcases the integration for a single user. To enable integration for multiple users, simply pass the prop isMultiCalendar as true. This allows your application to handle multiple Outlook calendar accounts seamlessly, providing a more flexible experience for users who manage several calendars.

Below code snippet can be used to render the Outlook calendar connect button for multiple users

import { Connect } from "@calcom/atoms";

export default function ConnectCalendar() {
  return (
    <main>
      <Connect.OutlookCalendar isMultiCalendar={true} />
    </main>
  )
}

For a demonstration of the Outlook calendar connect integration for multiple users, please refer to the video below.

We offer all kinds of customizations to the Outlook calendar connect via props. Below is a list of props that can be passed to the Google calendar connect.

NameRequiredDescription
classNameNoTo pass in custom classnames from outside for styling the atom
labelNoThe label for the connect button
alreadyConnectedLabelNoLabel to display when atom is in already connected state
loadingLabelNoLabel to display when atom is in loading state
onCheckErrorNoA callback function to handle errors when checking the connection status
redirNoA custom redirect URL link where the user gets redirected after successful authentication
initialDataNoInitial data to be passed
isMultiCalendarNoSpecfies if the button supports integration for multiple users
tooltipNoIn case user wants to pass external tooltip component
tooltipSideNoSpecifies what direction the tooltip appears
isClickableNoBoolean to disable button or not
onSuccessNoA callback function to handle success when checking the connection status