Files
bsky-social-app/src/components/Layout/Header/GlassyBackdrop.tsx
T
2025-07-18 12:22:46 +03:00

14 lines
369 B
TypeScript

import {View} from 'react-native'
import {atoms as a, useTheme} from '#/alf'
/**
* GlassyBackdrop component
* On web, it applies a backdrop filter to create a glassy effect.
* On native and non-safari mobile web, it's just a solid color.
*/
export function GlassyBackdrop() {
const t = useTheme()
return <View style={[a.absolute, a.inset_0, t.atoms.bg]} />
}