import {Fragment} from 'react';
import Placeholder from 'sentry/components/placeholder';
import PlatformIcon from 'sentry/components/replays/platformIcon';
import {useReplayContext} from 'sentry/components/replays/replayContext';
import {Tooltip} from 'sentry/components/tooltip';
export default function BrowserOSIcons({
showBrowser = true,
isLoading,
}: {
isLoading?: boolean;
showBrowser?: boolean;
}) {
const {replay} = useReplayContext();
const replayRecord = replay?.getReplay();
return isLoading ? (
) : (
{showBrowser && (
)}
);
}