@kietpt2003/react-native-core-ui
Version:
React Native Core UI components by KietPT
13 lines • 451 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle } from 'react-native';
export interface CardContentProps {
children?: React.ReactNode;
style?: StyleProp<ViewStyle>;
/**
* Set to `true` if you want to have spacing at bottom longer (usually use for the last CardContent)
*/
isLast?: boolean;
}
declare const CardContent: React.FC<CardContentProps>;
export default CardContent;
//# sourceMappingURL=CardContent.d.ts.map