import React from "react"; import { CloseButton, type CloseButtonProps, cn } from "heroui-native"; export interface NCloseButtonProps extends Omit { /** Required: the button has no visible text to name it. */ accessibilityLabel?: string; } export const NCloseButton = React.memo( ({ className, accessibilityLabel = "Close", feedbackVariant: _fv, animation: _anim, ...props }) => { return ( ); }, ); NCloseButton.displayName = "NCloseButton";