Repository URL to install this package:
|
Version:
2.1.0 ▾
|
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 }