office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
1 lines • 873 B
JavaScript
module.exports = "import * as React from 'react';\r\nimport {\r\n Label,\r\n Pivot,\r\n PivotItem\r\n} from '../../../../index';\r\n\r\nexport class PivotIconCountExample extends React.Component<any, any> {\r\n public render() {\r\n return (\r\n <div>\r\n <Pivot>\r\n <PivotItem linkText='My Files' itemCount={ 42 } itemIcon='Emoji2'>\r\n <Label>Pivot #1</Label>\r\n </PivotItem>\r\n <PivotItem itemCount={ 23 } itemIcon='Recent'>\r\n <Label>Pivot #2</Label>\r\n </PivotItem>\r\n <PivotItem itemIcon='Globe'>\r\n <Label>Pivot #3</Label>\r\n </PivotItem>\r\n <PivotItem linkText='Shared with me' itemIcon='Ringer' itemCount={ 1 }>\r\n <Label>Pivot #4</Label>\r\n </PivotItem>\r\n </Pivot>\r\n </div>\r\n );\r\n }\r\n}\r\n";