import React from 'react'; import { Image } from 'react-native'; import { Box } from '../Box'; import { fonts } from '../../theme/theme'; import { Text } from '../Text'; import { widthPercentageToDP } from '../../utils'; import type { IOnBoardingItem } from './onboarding'; export const Content = ({ item }: { item: IOnBoardingItem }) => ( {item.title} {item.subtitle} );