'use client'; import React from 'react'; import { tva } from '@gluestack-ui/nativewind-utils/tva'; import { Platform, View } from 'react-native'; import type { VariantProps } from '@gluestack-ui/nativewind-utils'; const dividerStyle = tva({ base: 'bg-background-200', variants: { orientation: { vertical: 'w-px h-full', horizontal: 'h-px w-full', }, }, }); type IUIDividerProps = React.ComponentPropsWithoutRef & VariantProps; const Divider = React.forwardRef< React.ComponentRef, IUIDividerProps >(function Divider({ className, orientation = 'horizontal', ...props }, ref) { return ( ); }); Divider.displayName = 'Divider'; export { Divider };