import { forwardRef } from 'react'; import type { ComponentProps } from 'react'; import { theme } from './theme'; import { View } from './View'; type CardProps = ComponentProps; export const Card = forwardRef( ({ children, ...props }, ref) => { return ( {children} ); }, ); Card.displayName = 'Card';