Examples
Keyboard interaction patterns and a11y is implemented in the Tile demos, located in the Demo section.
Basic tile
Basic tiles can appear in one of three states: a default state, selected state, and a disabled state. To change the state of a tile, use the properties isSelected
and isDisabled
.
With subtext
Tile subtext can provide users with additional context. To add subtext, pass a short description to the <Tile>
component.
With icon
Icons can provide a visual cue that helps users understand what the tile is being used for. To add an icon, use the icon
property.
With stacked icon
You can further customize a tile’s appearance by placing an icon above the title. To stack your icon on top of a tile’s title, use the isStacked
property.
With large icons
You can make your icons larger to help catch a user’s attention. To increase the size of an icon, use the isDisplayLarge
property.
Be aware that isDisplayLarge
can only be used when isStacked
is also applied.
With long subtext
To provide users with a large amount of context, subtext can be elongated to wrap around to the next line. To format a long subtext, you can pass the component Flex
into <Tile>
.
You can also change the type of Flex
you can use so that the line breaks in the subtext fits your needs. You can do this by changing the default flex. The standard is default: “flex_1”
, and changing the number in the default will also change where the sentence breaks.
Props
Tile
Name | Type | Default | Description |
---|---|---|---|
titlerequired | string | Title of the tile | |
children | React.ReactNode | Content rendered inside the banner | |
className | string | Additional classes added to the banner | |
icon | React.ReactNode | Icon in the tile title | |
isDisabled | boolean | Flag indicating if the tile is disabled | |
isDisplayLarge | boolean | Flag indicating if the stacked tile icon is large | |
isSelected | boolean | Flag indicating if the tile is selected | |
isStacked | boolean | Flag indicating if the tile header is stacked |
CSS variables
Expand or collapse column | Selector | Variable | Value |
---|