@carlosmedina06/ui-native
Version:
the best way to build beautiful applications on iOS and Android with React Native and NativeWind.
11 lines • 504 B
TypeScript
import { Text as BaseText, StyleProp, TextStyle } from 'react-native';
export interface TextProps extends React.ComponentProps<typeof BaseText> {
children: React.ReactNode;
className?: string;
style?: StyleProp<TextStyle>;
variant?: 'h1' | 'h2' | 'h3' | 'h4' | 'p' | 'inline' | 'lead' | 'large' | 'small' | 'muted' | 'default' | 'bold' | 'semibold';
color?: 'black' | 'white' | 'gray';
}
declare const Text: React.FC<TextProps>;
export default Text;
//# sourceMappingURL=Text.d.ts.map