import type { FC } from 'react'; import { Chip, Flex, Text } from '@servicetitan/anvil2'; interface InfoSectionProps { nameToShow: string; name?: string; email?: string; isDefault?: boolean; isShared?: boolean; } export const InfoSection: FC = ({ nameToShow, email, isDefault, isShared }) => ( {nameToShow} {isDefault && } {isShared && } {email && ( {email} )} );