export default function getRoleLabelPill({ label, tooltip, classes, shrink = true, }: { label: string; tooltip: string; classes?: string; shrink?: boolean; }) { return ( {shrink ? label[0].toUpperCase() : label} ); }