import * as LabelPrimitive from '@rn-primitives/label'; import * as React from 'react'; import { cn } from '../../lib/utils'; function Label({ className, onPress, onLongPress, onPressIn, onPressOut, ...props }: LabelPrimitive.TextProps & { ref?: React.RefObject; }) { return ( ); } export { Label };