import React from "react"; import { Surface, type SurfaceRootProps, cn } from "heroui-native"; export interface NSurfaceProps extends SurfaceRootProps { children: React.ReactNode; } export const NSurface = React.memo(({ children, className, ...props }) => { return ( {children} ); }); NSurface.displayName = "NSurface";