import { forwardRef, memo, ReactNode } from 'react'; import { View, type ViewProps } from 'react-native'; import { cardActionsStyles } from './utils'; export type Props = ViewProps & { children: ReactNode | ReactNode[]; }; const CardActions = memo( forwardRef(({ style, ...rest }: Props, ref: any) => { return ; }), ); CardActions.displayName = 'Card_Actions'; export default CardActions;