import React from 'react'; import { View, type ViewProps } from 'react-native'; import useTheme from '../hooks/useTheme'; export type Props = ViewProps & { variant?: any lightColor?: string; darkColor?: string; value?: number; }; const SeparatorComponent = ({ style, value = 1, ...otherProps }: Props) => { const { currentTheme } = useTheme() if (!currentTheme) return return ( ) } export default SeparatorComponent;