import { SerieIcon } from '../report-chart/common/serie-icon'; import { Tooltiper } from '../ui/tooltip'; interface Props { country?: string; city?: string; os?: string; os_version?: string; browser?: string; browser_version?: string; referrer_name?: string; referrer_type?: string; } export function ListPropertiesIcon({ country, city, os, os_version, browser, browser_version, referrer_name, referrer_type, }: Props) { return (
{country && ( )} {os && ( )} {browser && ( )} {referrer_name && ( )}
); }