Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Breadcrumb.d.ts 412B

123456789101112131415161718
  1. import * as React from 'react';
  2. import BreadcrumbItem from './BreadcrumbItem';
  3. import { BsPrefixComponent } from './helpers';
  4. export interface BreadcrumbProps {
  5. label?: string;
  6. listProps?: React.OlHTMLAttributes<any>;
  7. }
  8. declare class Breadcrumb<
  9. As extends React.ElementType = 'nav'
  10. > extends BsPrefixComponent<As, BreadcrumbProps> {
  11. static Item: typeof BreadcrumbItem;
  12. }
  13. export default Breadcrumb;