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 IOSInstallHelp({ onboarding = false, }: MobileInstallHelpProps): JSX.Element { const iosContainerStyles = { marginTop: '12px', width: '100%', height: '40px', display: 'flex', justifyContent: !onboarding ? 'flex-end' : 'initial', } return ( Install Omnivore for iOS and macOS With the native Omnivore for iOS and macOS app installed you can save any link, read offline, and listen to your saved items using text-to-speech. Download on the App Store ) }