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
1import { BulletList } from "passport-ui";

Usage

Basic example showing how to use the component.

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

Additional resources

Documentation and examples are available in Storybook.