Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui-presets / src / presets / MenuList / fixture.ts
Size: Mime:
import { MultipleListProps } from 'presets/MultipleLinkList/typings'
import { MenuListDataType, ImageDataProps } from './typings'

const ButtonList: MenuListDataType = [
  {
    text: 'Undershirts',
  },
  {
    text: 'Plain Tees',
  },
  {
    text: 'Workwear',
  },
  {
    text: 'Fashion',
  },
  {
    text: 'Logo/Graphic',
  },
]

const ViewAllText: MenuListDataType = [
  { text: 'view all Undershirts' },
  { text: 'view all Plain Tees' },
  { text: 'view all Workwear' },
  { text: 'view all Fashion' },
  { text: 'view all Logo/Graphic' },
]

const list: MultipleListProps = [
  {
    title: 'Women',
    list: [
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
      { label: 'Short Sleeve', href: 'http://uxui.skavaone.com' },
    ],
  },
  {
    title: 'Men',
    list: [
      { label: 'Jeans', href: 'http://uxui.skavaone.com' },
      { label: 'Jeans', href: 'http://uxui.skavaone.com' },
      { label: 'Jeans', href: 'http://uxui.skavaone.com' },
      { label: 'Jeans', href: 'http://uxui.skavaone.com' },
      { label: 'Jeans', href: 'http://uxui.skavaone.com' },
    ],
  },
  {
    title: 'Boys',
    list: [
      { label: 'T Shirts', href: 'http://uxui.skavaone.com' },
      { label: 'T Shirts', href: 'http://uxui.skavaone.com' },
      { label: 'T Shirts', href: 'http://uxui.skavaone.com' },
      { label: 'T Shirts', href: 'http://uxui.skavaone.com' },
      { label: 'T Shirts', href: 'http://uxui.skavaone.com' },
    ],
  },
]

const ImageData: ImageDataProps = {
  src: 'https://raderain.sirv.com/Images/produts/Cat_294x200_Workwear.png',
}

export { ButtonList, list, ViewAllText, ImageData }