1Sponsor

Bullet List

Nested structured content with ●/└/□ bullet prefixes

Terminal

Installation

pnpm dlx shadcn@latest add https://termcn.dev/r/bullet-list.json

Usage

import { BulletList } from "@/components/ui/bullet-list";
<BulletList>
  <BulletList.Item label="Install dependencies" bold>
    <BulletList.Sub>
      <BulletList.TreeItem label="ink@5.1.0" />
      <BulletList.TreeItem label="react@18.3.0" />
    </BulletList.Sub>
  </BulletList.Item>
  <BulletList.Item label="Configure project" />
  <BulletList.CheckItem label="Write tests" done />
  <BulletList.CheckItem label="Deploy to production" />
</BulletList>

API Reference

BulletList

PropTypeDefault
childrenReactNoderequired

BulletList.Item

PropTypeDefault
labelstringrequired
boldbooleanfalse
colorstringundefined
childrenReactNodeundefined

BulletList.Sub

PropTypeDefault
childrenReactNoderequired

BulletList.TreeItem

PropTypeDefault
labelstringrequired
colorstringundefined

BulletList.CheckItem

PropTypeDefault
labelstringrequired
donebooleanfalse
colorstringundefined