Card variants

Beta
Different card variants can be used to provide information about actions people can take.
Access to Fuegokit npm packages, source code repositories, and some content is limited to Appfire staff. Log in with Slack to continue.

Fuegokit React ships with several ready-to-use card variants that you can include in common grid layouts on Getting Started screens.

Each can be rendered in a responsive grid, and each features polymorphic behavior that allows developers to render the card as the appropriate semantic element (as a li with the grid rendered as an ul, for example.)

For specific props tables, explore each component's props in Storybook.

Import

import {ButtonCard, ListCard, CoreFeaturesCard, AdminFeaturesCard, SurfaceCard}

Typescript support

Fuegokit React ships with Typescript support and to access the types for each card and its accompanying action, import them with the component:

import {AdminFeaturesCard, AdminFeaturesCardGrid, AdminFeaturesCardAction, SectionHeader} from '@fuegokit/react'

Admin Features Card

Surface Card

Surface Card renders a list item or other semantically appropriate card item that has a clickable surface, while maintaining semantic html structure and accessibility features for users of assistive technologies should be provided affordancesthat ensure that the card and content are usable and inclusive.

Typically used in a grid of 4, available with or without border and can be raised by default with the raised prop.

Use Case Card

Core Features Card

Core Features Card provides links that give users actions to take.

Those actions can be internal, external, or addon actions.

Button Card

List Card

See also