import React, { forwardRef } from "react"; import { cl } from "../../utils/helpers"; type DialogBodyProps = React.HTMLAttributes; /** * @see 🏷️ {@link DialogBodyProps} * @example * ```jsx * * * * Dialog body content * * * * ``` */ const DialogBody = forwardRef( ({ className, children, ...restProps }, forwardedRef) => { return (
{children}
); }, ); export { DialogBody }; export type { DialogBodyProps };