import * as React from "react"; import { View, Text, StyleSheet, Image, TouchableOpacity } from "react-native"; type FooterItemProps = { label: string; icon: string; }; const FooterItem = ({ label, icon }: FooterItemProps) => ( {label} ); const Footer = () => { return ( ); }; const styles = StyleSheet.create({ container: { alignSelf: "stretch", marginTop: 28, width: "100%", paddingBottom: 21, }, spacer: { display: "flex", minHeight: 10, width: "100%", }, content: { marginTop: 17, width: "100%", paddingLeft: 10, paddingRight: 10, }, footerItem: { borderRadius: 4, display: "flex", paddingLeft: 9, paddingRight: 9, paddingTop: 6, paddingBottom: 13, flexDirection: "row", alignItems: "center", justifyContent: "space-between", marginBottom: 8, }, footerItemText: { color: "#444", fontFamily: "Shopee Display, -apple-system, Roboto, Helvetica, sans-serif", fontSize: 13, fontWeight: "700", }, footerItemIcon: { width: 11, height: 6, marginTop: 7, }, logo: { width: 95, height: 40, marginTop: 17, marginLeft: 10, }, }); export default Footer;