// withHooks
// noPage

import { LibPicture } from 'esoftplay/cache/lib/picture/import';
import { LibStyle } from 'esoftplay/cache/lib/style/import';

import React from 'react';
import { Text, View } from 'react-native';


export interface MarketProduct_detail_promoArgs {

}
export interface MarketProduct_detail_promoProps {

}
export default function m(props: MarketProduct_detail_promoProps): any {
  let itemWidth = LibStyle.width * 0.5
  let itemHeight = itemWidth * 0.5

  return (
    <View style={{ marginTop: 15 }}>
      <Text allowFontScaling={false} style={{ marginLeft: 25, fontFamily: "Arial", fontSize: 12, fontWeight: "bold", fontStyle: "normal", lineHeight: 13, letterSpacing: 0, textAlign: "left", color: "#03192a" }}>Promo</Text>
      <LibPicture source={{ uri: 'https://s3.giladiskon.com/images/deals/dana-promo-giladiskon-637030054132361569.png' }} style={{ marginLeft: 25, marginTop: 10, resizeMode: 'cover', width: itemWidth, height: itemHeight }} />
    </View>
  )
}