UNPKG

@kietpt2003/react-native-core-ui

Version:
13 lines 451 B
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