import { PropsWithChildren } from 'react' type MailProps = PropsWithChildren<{ email: string subject: string body: string children?: string | Node className?: any }> function Mailto({ email, subject, body, className, children }: MailProps) { return (
{children} ) } export { Mailto }