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