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