@tmlmobilidade/emails
Version:
10 lines (9 loc) • 384 B
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/* * */
import { Button, Section } from 'react-email';
import styles from './styles.js';
/* * */
export function MainButton({ href, label }) {
return (_jsx(Section, { style: styles.container, children: _jsx(Section, { style: styles.section, children: _jsx(Button, { href: href, style: styles.button, children: label }) }) }));
}
;