BulletList
Template for action cards containing a bullet list
#
Usage<ActionCardBulletListTemplate title="Basic Template Title" imageProps={{variant: "icon", SVGImg: svg}} description="This is a basic template description" bulletListProps={{items: ["item 1", "item 2", "item 3"], color: "green"}} primaryButtonProps={{label: "Custom Primary", onPress: () => console.log("Primary Button Pressed")}} onPress={() => console.log("Pressed 'Next' button")}/>
tip
See CustomBulletList too see additional styling possibilities of the bullet list
#
PropsName | Type | Default | Description |
---|---|---|---|
imageProps | ActionCardImageProps | undefined | The props used for the image. See props here |
title* | string | undefined | The card title |
description* | string | undefined | The card description |
bulletListProps | BulletListProps | undefined | Props passed to the bullet list. See props here |
primaryButtonProps | ActionCardButtonProps | undefined | The props used for the primary button. See props here |
onPress | function () => any | undefined | Callback that is called when pressing the 'next' button. |
*required