import type { FC } from 'react';
import React from 'react';
import { ModalCustom } from './modalCustom';
import type { ModalProps } from './types';

/**
 * Modals interrupt users to present information related to the content of their parent page, or ask confirmation before performing an important action.
 *
 * @type organism
 * @status live
 * @tags overlays
 */
export const Modal: FC<ModalProps> = (props) => <ModalCustom {...props} />;
