import React from 'react' import { MjmlButton } from '@faire/mjml-react' import { blue, grayLight } from '../theme' import { leadingTight, textBase, borderBase } from '../theme' type ButtonProps = { link: string children: React.ReactNode } export const Button = ({ link, children }: ButtonProps) => ( {children} )