import React from 'react' import { Desktop, DeviceTabletSpeaker, DeviceMobileCamera, } from '@phosphor-icons/react' import { Box, HStack } from './LayoutPrimitives' import { StyledText, StyledAnchor } from './StyledText' type MobileInstallHelpProps = { onboarding?: boolean } export default function AndroidInstallHelp({ onboarding = false, }: MobileInstallHelpProps): JSX.Element { const iosContainerStyles = { marginTop: '12px', width: '100%', height: '40px', display: 'flex', justifyContent: !onboarding ? 'flex-end' : 'initial', } return ( Install Omnivore for Android Use our native Android app (currently a preview release), to save any link, access your full library, and read offline.
Get it on Google Play
) }