@tmlmobilidade/emails
Version:
9 lines (8 loc) • 358 B
TypeScript
import { type PropsWithChildren } from 'react';
interface ParagraphProps {
bold?: boolean;
color?: 'danger' | 'info' | 'muted' | 'prose' | 'success' | 'warning';
size?: 'lg' | 'md' | 'sm';
}
export declare function Paragraph({ bold, children, color, size }: PropsWithChildren<ParagraphProps>): import("react/jsx-runtime").JSX.Element;
export {};