import React from "react"; import { ThemeBackground, type ThemeBackgroundProps, cn } from "heroui-native"; export interface NThemeBackgroundProps extends ThemeBackgroundProps { children?: React.ReactNode; } export const NThemeBackground = React.memo( ({ children, className, ...props }) => { return ( {children} ); }, ); NThemeBackground.displayName = "NThemeBackground";