1
0
mirror of https://github.com/DocNR/POWR.git synced 2025-06-18 05:25:08 +00:00
POWR/components/ThemedView.tsx

15 lines
468 B
TypeScript
Raw Normal View History

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} />;
}