// app/components/Modals/ModalAction.tsx import React from 'react'; interface ModalActionProps { href: string; children: React.ReactNode; className?: string; // To allow for specific margins like mt-5 } export default function ModalAction({ href, children, className = "" }: ModalActionProps) { return ( {children} ); }