Bullet List

A component for displaying a list of items with bullet points.

Installation

Import the component from the passport-ui package.

components/example.tsx
1
import { BulletList } from "passport-ui";

Usage

Basic example showing how to use the component.

components/example.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
<BulletList items={["First item", "Second item", "Third item"]} />
{/* Single item */}
<BulletList items="Single item in the list" />
{/* Complex items */}
<BulletList items={[
"User interface components with accessibility",
"Form validation and error handling",
"Theme support with light and dark modes",
"Motion primitives for smooth animations",
"TypeScript support out of the box"
]} />

Additional resources

Documentation and examples are available in Storybook.