import * as React from "react"; import { View, Text, StyleSheet } from "react-native"; import { MaterialIcons } from "@expo/vector-icons"; export interface IIconProps { disabled?: boolean; iconID: React.ComponentProps["name"]; text: string; } export function Icon(props: IIconProps) { return ( {props.text} ); } const styles = StyleSheet.create({ container: { height: 64, width: 80, flexDirection: "column", justifyContent: "space-between", alignItems: "center", paddingVertical: 8, }, text: { color: "#fff", textAlign: "center", }, });