UNPKG

789 BTypeScriptView Raw
1import * as React from 'react';
2export interface TileProps extends React.HTMLProps<HTMLDivElement> {
3 /** Content rendered inside the banner */
4 children?: React.ReactNode;
5 /** Additional classes added to the banner */
6 className?: string;
7 /** Title of the tile */
8 title: string;
9 /** Icon in the tile title */
10 icon?: React.ReactNode;
11 /** Flag indicating if the tile is selected */
12 isSelected?: boolean;
13 /** Flag indicating if the tile is disabled */
14 isDisabled?: boolean;
15 /** Flag indicating if the tile header is stacked */
16 isStacked?: boolean;
17 /** Flag indicating if the stacked tile icon is large */
18 isDisplayLarge?: boolean;
19}
20export declare const Tile: React.FunctionComponent<TileProps>;
21//# sourceMappingURL=Tile.d.ts.map
\No newline at end of file