Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / @skava/ui   js

Repository URL to install this package:

Version: 2.8.8 

/ src / components / themes / ProductItem / wr / fixture.ts

const productItemData = {
  image: `https://raderain.sirv.com/T-Giant/518F_420010210_main.png`,
  title: `Short Sleeve Contrast Vintage Melange Burnout T-Shirts For Women With Plus Size`,
  price: {
    regular: '$10.99',
    sale: '$9.99',
  },
  offers: `30% Off Dresses`,
  ratings: 4,
}

const ColorList = [
  {
    label: 'Red',
    value: 'red',
    isSelected: true,
  }
]

const FitList = [
  {
    label: 'Medium',
    value: 'medium',
    isSelected: true,
  }
]

const StyleList = [
  {
    label: 'Loose Fit',
    value: 'loose-fit',
    isSelected: true,
  }
]

export {
  productItemData,
  ColorList,
  FitList,
  StyleList,
}