import { Box, Typography } from '@mui/material'; import { getOrgDisplayNames } from 'utils/OrgComboUtils'; export default function OrgOptionLabel({ option }) { const { primary, secondary } = getOrgDisplayNames(option); if (!primary) return null; return ( {primary} {secondary ? ( {secondary} ) : null} ); } export const renderOrgOption = (props, option) => (
  • );