import React from 'react'; import { StyleSheet, Text, View } from 'react-native'; import { GlobalConstants } from '../constant/GlobalConstatnt'; import { colors } from '../theme/colors'; import type { Style, StyleProps } from '../types/genericTypes'; import { Spacer } from './_common/Spacer'; interface FooterProps extends StyleProps { footerHeadingText?: Style; footerContetntText?: Style; } export const Footer = ({ style, footerContetntText, footerHeadingText, }: FooterProps) => ( {GlobalConstants.FOOTER_CONTET} {GlobalConstants.FOOTER} ); const styles = StyleSheet.create({ footer: { fontSize: 14, fontWeight: 'bold', }, footerContent: { fontSize: 14, fontWeight: '500', color: colors.light, }, });