fake-checker-nativeapp/components/ThemedView.tsx
smfahim25 cb0ec68fc2 Initial commit
Generated by create-expo-app 3.2.0.
2024-12-07 17:21:39 +06:00

14 lines
468 B
TypeScript

import { View, type ViewProps } from 'react-native';
import { useThemeColor } from '@/hooks/useThemeColor';
export type ThemedViewProps = ViewProps & {
lightColor?: string;
darkColor?: string;
};
export function ThemedView({ style, lightColor, darkColor, ...otherProps }: ThemedViewProps) {
const backgroundColor = useThemeColor({ light: lightColor, dark: darkColor }, 'background');
return <View style={[{ backgroundColor }, style]} {...otherProps} />;
}