import type { FC } from 'react';
import React from 'react';
import { SidecarCustom } from './sidecarCustom';
import type { SidecarProps } from './types';

/**
 * Sidecars interrupt users to present tertiary actions or simple sub-processes that are contextual to the parent page.
 *
 * @type organism
 * @status live
 * @tags overlays
 */
export const Sidecar: FC<SidecarProps> = (props) => <SidecarCustom {...props} />;
