import { CloseLargeIcon } from "@/components/Icons" import Button from "@/components/TempDesignSystem/Button" import Subtitle from "@/components/TempDesignSystem/Text/Subtitle" import styles from "./modalContent.module.css" import type { ReactNode } from "react" interface ModalContentProps { title: string content: ReactNode primaryAction: { label: string onClick: () => void intent?: "primary" | "secondary" | "text" isLoading?: boolean } secondaryAction: { label: string onClick: () => void intent?: "primary" | "secondary" | "text" } onClose: () => void } export function ModalContent({ title, content, primaryAction, secondaryAction, onClose, }: ModalContentProps) { return ( <>
{title}
{content}
) }