import { asp as g } from "@asp/asp"; import type { FC } from "react"; import { ActivityIndicator, Text, type TextProps, TouchableOpacity, type TouchableOpacityProps, } from "react-native"; const DEFAULT_HEIGHT = 50; type ContainerProps = TouchableOpacityProps & { isLoading?: boolean; }; export const Container: FC = ({ children, style, isLoading, onPress, ...rest }) => { return ( {isLoading ? : children} ); }; export const Label: FC = ({ children, style, ...rest }) => { return ( {children} ); };