components/example.tsx
1
import { BulletList } from "passport-ui";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"]} />