Kliko/lib/components/ThemedView.tsx
2024-08-08 14:22:35 +02:00

14 lines
480 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} />;
}