import { LocationIcon } from '@/components/DomainIcons'; import { globalIDs } from '@/utils/constants'; interface BadgeLocationProps { /** Location to display. */ location: string; } /** * Displays location icon with a full text tooltip. */ export function BadgeLocation({ location }: BadgeLocationProps) { return (
); }