UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

17 lines (16 loc) 439 B
import * as React from 'react'; export interface ITextRampExampleItem { key: string; variant: string; example: JSX.Element; } export interface ITextRampExampleState { items: ITextRampExampleItem[]; } export declare class TextRampExample extends React.Component<{}, ITextRampExampleState> { private _allItems; private _columns; constructor(props: {}); render(): JSX.Element; private _renderDetailsRow; }