import { radius, shadows, spacing, useColors } from '@/aesthetics/styles'; import type { ReactNode } from 'react'; import { StyleSheet, View } from 'react-native'; export function Card({ children, style }: { children: ReactNode; style?: object }) { const c = useColors(); return ( {children} ); } const styles = StyleSheet.create({ card: { borderRadius: radius.xl, borderWidth: 1, padding: spacing.xl, }, });