CustomBulletList
A simple bullet list component
#
Usage<CustomBulletList items={["item 1", "item 2", "item 3", "..."]}/>
#
Color<CustomBulletList items={["item 1", "item 2", "item 3", "..."]} color="red" />
#
Checkmark<CustomBulletList items={["item 1", "item 2", "item 3", "..."]} mark="checkmark" />
#
PropsName | Type | Default | Description |
---|---|---|---|
items | string[] | undefined | The list of items to be displayed as a bullet list |
mark | 'checkmark' , 'circle' | 'circle' | The bullet list marker |
color | string | black | The color of the bullet list marker. When mark is 'checkmark' it will always be 'green' |