import React from "react"; import { cn } from "#/utils/utils"; interface ModalBodyProps { testID?: string; children: React.ReactNode; className?: React.HTMLProps["className"]; } export function ModalBody({ testID, children, className }: ModalBodyProps) { return (
{children}
); }