import { MembershipRole } from "@prisma/client"; import classNames from "classnames"; import { useLocale } from "@lib/hooks/useLocale"; type PillColor = "blue" | "green" | "red" | "yellow"; interface Props { text: string; color?: PillColor; } /** @deprecated Use `packages/features/ee/teams/components/TeamPill.tsx` */ export default function TeamPill(props: Props) { return (