import React from 'react'; import { StyleProp, StyleSheet, ViewStyle, View } from 'react-native'; type Props = React.ComponentPropsWithRef & { children?: React.ReactNode; style?: StyleProp; }; const CardContent = ({ children, style = {}, ...rest }: Props) => { return ( {children} ); }; const styles = StyleSheet.create({ wrapper: { padding: 8, }, }); export default CardContent;