Skip to content

Commit

Permalink
chore(breadcrumbs): Adds docs for BreadcrumbItem
Browse files Browse the repository at this point in the history
  • Loading branch information
diegonvs committed Jul 23, 2019
1 parent ab8a91e commit ce69f64
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions packages/clay-navigation/src/BreadcrumbItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,19 @@ import ClayButton from '@clayui/button';
import React from 'react';

export interface IBreadcrumbItem {
/**
* Flag to indicate if the Breadcrumb item is active or not.
*/
active?: boolean;

/**
* This value is used to be the target of the link.
*/
href?: string;

/**
* Label of the Breadcrumb item
*/
label: string;

/**
Expand Down

0 comments on commit ce69f64

Please sign in to comment.