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 / src / components / molecules / TabList / typings.ts
Size: Mime:
import { ReactNode } from 'react'

export interface TabListRenderProp extends Function {
  (props: TabListProps): ReactNode
}

export interface Items {
  label?: string
}

export interface ProductItem {
  title?: string
  item?: Array<Items>
}

export type ListOfproduct = Array<ProductItem>

export interface TabListProps {
  className?: string
  children?: ReactNode
  dataQa?: string
  list?: ListOfproduct
  // renderProps
  renderList?: TabListRenderProp
  renderContainer?: TabListRenderProp
  renderWrapper?: TabListRenderProp
}