import React from 'react' import { StyleSheet, Text, View } from 'react-native' import Card from 'src/components/Card' import Touchable from 'src/components/Touchable' import ForwardChevron from 'src/icons/ForwardChevron' import Colors from 'src/styles/colors' import { typeScale } from 'src/styles/fonts' import { Shadow, Spacing } from 'src/styles/styles' interface Props { onPress?: () => void title: string subtitle: string testId?: string } function OnboardingCard({ testId, onPress, title, subtitle }: Props) { return ( <> {title} {subtitle} ) } const styles = StyleSheet.create({ itemTextContainer: { flex: 1, marginRight: Spacing.Regular16, }, pressableCard: { flexDirection: 'row', alignItems: 'center', flex: 1, padding: Spacing.Regular16, }, card: { marginTop: Spacing.Regular16, alignItems: 'center', padding: 0, }, title: { ...typeScale.labelSmall, lineHeight: 24, paddingBottom: 5, color: Colors.successPrimary, }, subtitle: { ...typeScale.bodyXSmall, color: Colors.contentSecondary, }, }) export default OnboardingCard