import React from "react"; import { ScrollView, View, StyleSheet } from "react-native"; import { ImageViewerURI } from "common-ui"; interface HorizontalImageScrollerProps { urls: string[]; imageHeight?: number; imageWidth?: number; } const HorizontalImageScroller: React.FC = ({ urls, imageHeight = 128, imageWidth = 128, }) => { if (!urls || urls.length === 0) return null; return ( {urls.map((url, idx) => ( ))} ); }; const styles = StyleSheet.create({ container: { marginVertical: 8, }, }); export default HorizontalImageScroller;