import clsx from "clsx" import Button, { ButtonProps } from "../../Button" type ModalFooterProps = { actions: ButtonProps[] className?: string } const ModalFooter = ({ actions, className }: ModalFooterProps) => { return (
{actions.map((action, index) => (
) } export default ModalFooter