Tones/components/ThemedView.tsx

15 lines
469 B
TypeScript
Raw Permalink Normal View History

2024-08-01 01:57:25 +00:00
import { View, type ViewProps } from 'react-native';
import { useThemeColor } from '../hooks/useThemeColor';
2024-08-01 01:57:25 +00:00
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} />;
}