Labels are read-only indicators used to communicate a category, metadata, or process's current state.
Label is deprecated. Use Badge with the color prop instead — every Label color is supported by Badge and renders identically (color="outline" becomes color="neutral-outline"). Label rendered a <span> while Badge renders a <div> by default — add as="span" to migrated Badges that sit in text flow (paragraphs, headings, links, buttons). Never use Label in new code. Label will be removed in a future major version.
showStatusIndicator) — includes a colored dot. Use for operational status that describes where something is in its lifecycle: online/offline, running/stopped, active/draft.color — available values: red, raspberry, clementine, yellow, green, teal, blue, plum, purple, grey, outline. Default is grey.red, yellow, green, blue, purple, and grey support the status indicator dot.bold — defaults to true. Set bold={false} for less visually prominent Labels. Light text is not compatible with status indicators.showStatusIndicator restricts color to red, yellow, green, blue, purple, or grey. Other colors throw a runtime error.showStatusIndicator requires bold to remain true (the default). Setting bold={false} with showStatusIndicator throws a runtime error.children for label text. Ember uses {{yield}} (default block) via <PlumaLabel>Text</PlumaLabel>.Text — it renders as a <span> by default and can be changed via the as prop.