import React from 'react'; import { StyleSheet, View, ViewStyle } from 'react-native'; import { cardStyle } from '../theme/proulr-theme'; export function Card({ children, style }: { children: React.ReactNode; style?: ViewStyle }) { return {children}; } const styles = StyleSheet.create({ card: { ...cardStyle, }, });