import { useMantineTheme } from '@mantine/core'; export const SafariStatusBarStyle = () => { const { colorScheme } = useMantineTheme(); const isDark = colorScheme === 'dark'; return ( ); };