import React from "react"; import { Skeleton, type SkeletonProps, cn } from "heroui-native"; export interface NSkeletonProps extends SkeletonProps {} export const NSkeleton = React.memo(({ className, ...props }) => { return ; }); NSkeleton.displayName = "NSkeleton";