// withHooks
// noPage

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

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


export interface MarketEmpty_productArgs {

}
export interface MarketEmpty_productProps {
  message: string,
  style?: any
}
export default function m(props: MarketEmpty_productProps): any {
  const message = props.message

  return (
    <View style={{ justifyContent: 'center', alignItems: 'center', marginTop: 90 }} >
      <LibPicture source={esp.assets('market/ic_product_empty.png')} style={{ width: 150, height: 150 }} resizeMode={'contain'} />
      <Text allowFontScaling={false} style={{ fontFamily: "Arial", fontSize: 11, fontWeight: "bold", fontStyle: "normal", lineHeight: 15, letterSpacing: 0, textAlign: "center", color: "#03192a", ...props.style }} >{message}</Text>
    </View>)
}