import React from "react"; import { Separator, type SeparatorProps, cn } from "heroui-native"; export interface NDividerProps extends SeparatorProps {} export const NDivider = React.memo( ({ orientation = "horizontal", className, ...props }) => { return ( ); }, ); NDivider.displayName = "NDivider";