import GracefullyImage from '@components/GracefullyImage' import { StyleConstants } from '@utils/styles/constants' import { useTheme } from '@utils/styles/ThemeManager' import React from 'react' import { View } from 'react-native' import AttachmentAltText from './AltText' import { aspectRatio } from './dimensions' export interface Props { total: number index: number sensitiveShown: boolean image: Mastodon.AttachmentImage navigateToImagesViewer: (imageIndex: string) => void } const AttachmentImage = ({ total, index, sensitiveShown, image, navigateToImagesViewer }: Props) => { const { colors } = useTheme() return ( ) } export default AttachmentImage