UNPKG

@tmlmobilidade/emails

Version:
9 lines (8 loc) 368 B
import React from 'react'; export interface HighlightTextProps { as?: 'div' | 'span'; children: React.ReactNode; size?: 'normal' | 'small'; variant?: 'error' | 'highlight' | 'info' | 'muted' | 'success' | 'warning'; } export declare function HighlightText({ as, children, size, variant, }: HighlightTextProps): import("react/jsx-runtime").JSX.Element;