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

Label

A label is a screen-reader handle as much as a visual cue. Bind to the control with `htmlFor` so click targeting and accessibility tree stay aligned.

Read the full spec

With an input

The canonical pairing. The label's `htmlFor` matches the input's `id`.

tsx
<div className="grid gap-2">
  <Label htmlFor="email">Email</Label>
  <Input id="email" type="email" placeholder="you@wolf.co" />
</div>

With a textarea

The same pattern scales to multi-line inputs. The label keeps its 14px medium weight.

tsx
<Label htmlFor="notes">Notes</Label>
<Textarea id="notes" placeholder="Add context…" />

Inline with a switch

For binary settings, a horizontal label + switch pairing reads faster. Keep the click target on the switch itself.

tsx
<div className="flex items-center gap-3">
  <Switch id="notifications" />
  <Label htmlFor="notifications">Push notifications</Label>
</div>

Disabled association

When the associated input is disabled the label fades automatically via the `peer` class, provided the label follows the input in the DOM.

tsx
<Input id="token" placeholder="sk_live_…" disabled className="peer" />
<Label htmlFor="token">API token</Label>
Previous — ComponentsDialog
Next — ComponentsTextarea