office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
26 lines (25 loc) • 765 B
TypeScript
import * as React from 'react';
export interface IPivotItemProps extends React.HTMLProps<HTMLDivElement> {
/**
* The text displayed of each pivot link.
*/
linkText: string;
/**
* An required key to uniquely identify a pivot item.
*
* Note: The 'key' from react props cannot be used inside component.
*/
itemKey?: string;
/**
* The aria label of each pivot link which will read by screen reader instead of linkText.
*
* Note that unless you have compelling requirements you should not override aria-label.
*/
ariaLabel?: string;
/**
* An optional item count that gets displayed just after the linkText(itemCount)
*
* Example: completed(4)
*/
itemCount?: number;
}