UNPKG

react-native-elegant-header

Version:

Fully customizable, easy to use Elegant Header component for React Native

11 lines (10 loc) 357 B
import * as React from "react"; import { StyleProp, TextStyle } from "react-native"; declare type CustomTextStyleProp = StyleProp<TextStyle> | Array<StyleProp<TextStyle>>; export interface ITitleProps { title: string; titleTextStyle?: CustomTextStyleProp; TextComponent?: any; } declare const Title: React.FC<ITitleProps>; export default Title;