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