@tmlmobilidade/emails
Version:
15 lines (14 loc) • 521 B
TypeScript
import { type PropsWithChildren } from 'react';
interface SpanProps {
color?: 'danger' | 'info' | 'prose' | 'warning';
size?: 'lg' | 'md' | 'sm';
spaceAfter?: boolean;
spaceBefore?: boolean;
weight?: 'bold' | 'normal';
}
/**
* Use this component to apply styles to inline text
* within other components, such as Paragraph.
*/
export declare function Span({ children, color, size, spaceAfter, spaceBefore, weight }: PropsWithChildren<SpanProps>): import("react/jsx-runtime").JSX.Element;
export {};