UNPKG

@kietpt2003/react-native-core-ui

Version:
16 lines 622 B
import * as React from 'react'; import { View, StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface CardHeaderProps { avatar?: React.ReactNode; action?: React.ReactNode; title?: React.ReactNode; subheader?: React.ReactNode; disableTypography?: boolean; style?: StyleProp<ViewStyle>; contentStyle?: StyleProp<ViewStyle>; titleStyle?: StyleProp<TextStyle>; subheaderStyle?: StyleProp<TextStyle>; } declare const CardHeader: React.ForwardRefExoticComponent<CardHeaderProps & React.RefAttributes<View>>; export default CardHeader; //# sourceMappingURL=CardHeader.d.ts.map