Community Wolf
Community
APIAboutContact
Book a demo

Community Wolf

Real-time safety intelligence for citizens and the teams who protect them.

Community Tools

  • Public map
  • Namola
  • WhatsApp

Business Tools

  • Access Control
  • Intelligence
  • Safety API
  • Group Agents
  • Patrol Management
  • Roster Management
  • Safety Survey
  • Pricing
  • Pricing calculator

Resources

  • Docs
  • Changelog
  • Design system

Company

  • Community
  • Business
  • API
  • About
  • Contact

Get pilot updates

New features, city launches, and integration partnerships - delivered monthly.

Subscribe to updates

(c) 2026 Community Wolf. All rights reserved.

Privacy PolicyTerms of Service
Wolf design system
Foundations
  • Brand
  • Voice and tone
  • Colour
  • Typography
  • Spacing and layout
  • Radius, elevation and borders
  • Motion
  • Iconography
  • Imagery and photography
  • Data visualisation
  • Accessibility
Patterns
  • App shell
  • Hero sections
  • Empty states
  • Error states
  • Skeletons and loading
  • Forms
  • Tables and data density
  • Confirmation and destructive actions
  • Authentication surfaces
Components
  • Button
  • Input
  • Card
  • Badge
  • Dialog
  • Label
  • Textarea
  • Select
  • Checkbox
  • Radio group
  • Switch
  • Form field
  • Tabs
  • Popover
  • Tooltip
  • Accordion
  • Alert dialog
  • Confirm dialog
  • Toast (Sonner)
  • Skeleton
  • Empty state

components

Checkbox

Reach for a checkbox when the user chooses one or more items that will be committed later. For instant settings, use a Switch — a checkbox implies a Save step.

Read the full spec

Static states

Four visual states side-by-side. These use `defaultChecked` / `disabled` so the gallery shows each without needing state.

tsx
<Checkbox />                           {/* unchecked */}
<Checkbox defaultChecked />            {/* checked */}
<Checkbox checked="indeterminate" />   {/* indeterminate */}
<Checkbox disabled />                  {/* disabled */}

Parent / child (indeterminate)

The parent shows indeterminate when some but not all children are selected. Click the parent to toggle everything.

tsx
const parentState = children.every(Boolean)
  ? true
  : children.every(v => !v) ? false : "indeterminate";

<Checkbox checked={parentState} onCheckedChange={handleParent} />

With help text

Stack the label and helper under the checkbox for a two-line row. Bind the label; keep the helper as plain muted text.

Required to finish setting up your organisation.

Previous — ComponentsSelect
Next — ComponentsRadio group