import React from 'react' import {StyleProp, StyleSheet, View, ViewStyle} from 'react-native' import {Image} from 'expo-image' import {AppBskyEmbedImages} from '@atproto/api' interface Props { images: AppBskyEmbedImages.ViewImage[] style?: StyleProp } export function ImageHorzList({images, style}: Props) { return ( {images.map(({thumb, alt}) => ( ))} ) } const styles = StyleSheet.create({ flexRow: {flexDirection: 'row'}, image: { width: 100, height: 100, borderRadius: 4, marginRight: 5, }, })