import { Letterhead, LetterheadHeading, LetterheadParagraph, } from "../Letterhead/index.tsx"; import * as css from "./style.css.ts"; import type { ViewContent } from "./SubscribeByPledgeCard.tsx"; export function LetterheadInfoCard(props: ViewContent) { return ( {props.title} {typeof props.description === "string" ? ( {props.description} ) : ( props.description )} ); }