Search for a command to run...
import { Checkbox } from '@jamie/ui/checkbox' import { Label } from '@jamie/ui/label' export function LabelDemo() { return ( <div className="flex items-center gap-2"> <Checkbox id="notifications" /> <Label htmlFor="notifications">Send meeting notifications</Label> </div> ) }