import { View, ViewProps } from 'react-native'; import React from 'react'; import { classNames } from '../utils'; export interface CoverCardProps extends ViewProps { children: React.ReactNode; className: string; } export const CoverCard: React.FC = ({ children, className, ...restOfProps }) => { return ( {children} ); };