import { View, type ViewProps } from "react-native"; import type { Theme } from "../../../core/design-system/index.js"; type ThemedViewProps = ViewProps & { theme: Theme; }; export function ThemedView({ style, theme, ...otherProps }: ThemedViewProps) { return ( ); }