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    
Size: Mime:
import { ReactNode } from 'react'

export interface BreadCrumbItemProps {
  url?: string
  text?: string
  /**
   * @alias isCurrent
   */
  isActive: boolean
}

export interface BreadCrumbStyledItemProps {
  'aria-current':
    | boolean
    | 'page'
    | 'time'
    | 'false'
    | 'true'
    | 'step'
    | 'location'
    | 'date'
    | undefined
}

export interface BreadCrumbProps {
  list: LabelValue[]
  children?: ReactNode
  className?: string
  text: string
  url: string
}

export interface LabelValue {
  label: string
  value: string | any
}