Checklist

The CheckList component displays list items with colored checkmarks (✓) or crosses (X). Each item can have a callback function for interaction.

Preview

Gravity checklist component

Usage

Props

Props
Description
Required
Value

className

custom styles

optional

SCSS or Tailwind

items

list items with checked status, callback and color

required

array [{ checked: boolean, callback: function, color: string }]

Example

Notes

  • The CheckList component uses the Icon and cn functions from 'components/lib'.

  • The items prop provides an array of objects with checked status, callback function, and color.

  • The className prop allows for custom styling to be applied.

  • Each item can have an optional callback function that gets called when the item is clicked.

Last updated

Was this helpful?