import clsx from 'clsx'; import React from 'react'; interface IProps { children: React.ReactNode; className?: string; } export const ModalBody: React.FC = ({ children, className }) =>
{children}
;