diff --git a/src/features/lightbox/chrome/Header.tsx b/src/features/lightbox/chrome/Header.tsx new file mode 100644 index 0000000000..429b551fd1 --- /dev/null +++ b/src/features/lightbox/chrome/Header.tsx @@ -0,0 +1,49 @@ +import {StyleSheet, View} from 'react-native' +import {useSafeAreaInsets} from 'react-native-safe-area-context' +import {msg} from '@lingui/core/macro' +import {useLingui} from '@lingui/react' + +import {atoms as a} from '#/alf' +import {TimesLarge_Stroke2_Corner0_Rounded as CloseIcon} from '#/components/icons/Times' +import {CircleChromeButton} from './CircleChromeButton' +import {ImageMenu} from './ImageMenu' + +type Props = { + onRequestClose: () => void + onPressShare: () => void + onPressSave: () => void +} + +export function Header({onRequestClose, onPressShare, onPressSave}: Props) { + const {_} = useLingui() + const insets = useSafeAreaInsets() + + return ( + + + + + ) +} + +const styles = StyleSheet.create({ + root: { + position: 'absolute', + top: 0, + left: 0, + right: 0, + }, +})