import React from 'react'; import { Switch as RNSwitch, SwitchProps } from 'react-native'; import { useTheme } from '../ThemeProvider'; export interface CustomSwitchProps extends Omit { value: boolean; onValueChange: (value: boolean) => void; } export function Switch({ value, onValueChange, ...props }: CustomSwitchProps) { const { colors } = useTheme(); return ( ); }