UNPKG

@tmlmobilidade/emails

Version:
11 lines (10 loc) 393 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; /* * */ import { Span } from '../Span/index.js'; import { Text } from 'react-email'; import styles from './styles.js'; /* * */ export function DebugCode({ label = 'Olá,', value }) { return (_jsxs(Text, { style: styles.text, children: [label, ":", _jsx(Span, { spaceBefore: true, weight: "bold", children: value })] })); } ;