import React from "react"; import { Chip, type ChipProps, cn } from "heroui-native"; export interface NChipProps extends ChipProps {} export const NChip = React.memo(({ children, className, ...props }) => { return ( {children} ); }); NChip.displayName = "NChip";