@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
16 lines • 622 B
TypeScript
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