Files
bsky-social-app/src/view/com/lightbox/ImageViewing/components/ImageItem/ImageItem.tsx
T
2024-11-02 00:35:56 +00:00

24 lines
524 B
TypeScript

// default implementation fallback for web
import React from 'react'
import {View} from 'react-native'
import {PanGesture} from 'react-native-gesture-handler'
import {ImageSource} from '../../@types'
type Props = {
imageSrc: ImageSource
onRequestClose: () => void
onTap: () => void
onZoom: (scaled: boolean) => void
isScrollViewBeingDragged: boolean
showControls: boolean
dismissSwipePan: PanGesture | null
}
const ImageItem = (_props: Props) => {
return <View />
}
export default React.memo(ImageItem)