import React from "react"; import CustomLink from "components/CustomLink"; import TooltipWrapper from "components/TooltipWrapper"; import { getPathWithQueryParams } from "utilities/url"; import { ANDROID_PLAY_STORE_URL } from "utilities/constants"; interface IAndroidLatestVersionWithTooltipProps { /** e.g. com.android.chrome, Component will build link URL using this ID */ androidPlayStoreId: string; } /** For Android Play Store apps version UI, we show "Latest" with tooltip * which links to the apps' play store */ const AndroidLatestVersionWithTooltip = ({ androidPlayStoreId, }: IAndroidLatestVersionWithTooltipProps) => { return ( See latest version on the{" "} } > Latest ); }; export default AndroidLatestVersionWithTooltip;