interface TextProps { className?: string; children: React.ReactNode; border?: boolean; } const borderClass = "pb-4 border-b border-utils-divider border-opacity-50"; export function Heading1(props: TextProps) { return (

{props.children}

); } export function Heading2(props: TextProps) { return (

{props.children}

); } export function Heading3(props: TextProps) { return (

{props.children}

); } export function Paragraph(props: TextProps) { return (

{props.children}

); }