HotOfferCard

Import

import HotOfferCard from './src/components/HotOfferCard/HotOfferCard';

Usage

 <HotOfferCard
  OnPress={()=>navigation.navigate('ScreenName')},
  Image={require('../../Assets/PNG/image.png')},
  OfferText={'Offer Text'},
  OfferSubText={'Offer Sub Text'}, 
 />

Props

The HotOfferCard component accepts the following props:

  1. OnPress: as like navigation.

  2. Image: as like as image URL.

  3. OfferText: Render the custom offer text.

  4. OfferSubText: Render the custom offer sub text.

Last updated