import React from 'react'; import { Image as RNImage } from 'react-native'; import { Box } from '../Box'; import { Text } from '../Text'; import { TouchableComponent } from '../TouchableComponent'; import { ImageSquare, Barcode, StackSimple } from 'phosphor-react-native'; import { SearchedText } from './SearchedText'; import { Normalize } from '../../utils/normalize'; export interface IManualMovProductCard { quantity: number; referenceName: string; packaging: string; sku: string; place: string; dueDate?: string; image?: string; onPress?: () => void; disabled?: boolean; search?: string; } export const ManualMovProductCard = ({ quantity, referenceName, packaging, sku, place, image, search, onPress, disabled = false, }: IManualMovProductCard) => ( {!image ? ( ) : ( )} {quantity} {packaging} {place} {sku} );