import React from 'react'; import Text from '../Text/Text'; interface Props { titleText: string; bodyText: string; } /** * A maybe reusable InfoCard component that follows the design system of the extension. * @returns */ export function InfoCard({ titleText, bodyText }: React.PropsWithChildren): JSX.Element { return (
{titleText} {bodyText}
); }