import type { BoxProps, VariantProps } from "@shopify/restyle"; import type { Theme } from "@themes/Theme"; import { TouchableOpacity } from "react-native"; import ButtonBase from "./bases/ButtonBase"; import Text from "./bases/Text"; type Props = BoxProps & VariantProps & VariantProps & { label: string; onPress: () => void; }; const Button = ({ onPress, label, textVariants, variant, ...rest }: Props) => { return ( {label} ); }; export default Button;