import classNames from "classnames"; import { useTranslation } from "react-i18next"; import { Icon, Icons } from "@/components/Icon"; import { useIsMobile } from "@/hooks/useIsMobile"; export function BrandPill(props: { clickable?: boolean; header?: boolean; backgroundClass?: string; }) { const { t } = useTranslation(); const isMobile = useIsMobile(); return (