UNPKG

expo-ui-kit-test

Version:

Cross-platform UI kit for Expo/React Native with responsive breakpoints and components.

10 lines (9 loc) 278 B
import React from 'react'; type ButtonProps = { title: string; onPress: () => void; variant?: 'primary' | 'secondary'; disabled?: boolean; }; declare const Button: ({ title, onPress, variant, disabled }: ButtonProps) => React.JSX.Element; export default Button;