import React from "react"; import { View } from "react-native"; import { cn } from "heroui-native"; export interface NProgressProps { value: number; className?: string; indicatorClassName?: string; } export const NProgress = React.memo(({ value, className, indicatorClassName }) => { const clampedValue = Math.min(100, Math.max(0, value)); return ( ); }); NProgress.displayName = "NProgress";