import { MembershipRole } from "@prisma/client"; import classNames from "classnames"; import { useLocale } from "@calcom/lib/hooks/useLocale"; type PillColor = "blue" | "green" | "red" | "orange"; interface Props { text: string; color?: PillColor; } export default function TeamPill(props: Props) { return (