import type { ModalFooterProps } from "$/types/ModalTypes"; import clsx from "clsx"; export default function ModalFooter(props: ModalFooterProps){ const { className, children } = props; return (
{children}
); }