import React from "react"; import { StyleSheet, View, Text, TouchableHighlight, TouchableNativeFeedback } from "react-native"; import colors from "../config/colors"; import { scaleDimsFromWidth } from "../config/dimensions"; import { Shadow } from "react-native-shadow-2"; export default function SvgLabeledButton({ SvgImage, label, onPress, style = {}, width = 95, height = 95, isToggle = false, normalBgcolor = colors.white, toggledBgColor = colors.toggle, }) { const dims = scaleDimsFromWidth(width, height, 16); return ( {label} ); } const styles = StyleSheet.create({ container: { overflow: "hidden", borderColor: colors.primary, backgroundColor: colors.primary, borderWidth: 6, borderRadius: 6, width: 130, height: 130, }, innerContainer: { overflow: "hidden", flex: 1, borderWidth: 6, borderRadius: 6, alignItems: "center", justifyContent: "center", }, label: { paddingTop: 5, textAlign: "center", color: colors.primary, backgroundColor: "transparent", fontSize: 14, fontWeight: "bold", }, });