UNPKG

@oxyhq/services

Version:

Reusable OxyHQ module to handle authentication, user management, karma system, device-based session management and more 🚀

10 lines • 337 B
import type React from 'react'; import { type StyleProp, type TextStyle } from 'react-native'; interface SectionTitleProps { title: string; theme: 'light' | 'dark'; style?: StyleProp<TextStyle>; } declare const SectionTitle: React.FC<SectionTitleProps>; export default SectionTitle; //# sourceMappingURL=SectionTitle.d.ts.map