Stratosphere Stratosphere
Docs
CSS
Components
Directives
Utils
v1.104.0 (opens new window)
Docs
CSS
Components
Directives
Utils
v1.104.0 (opens new window)
  • Components

    • Using Components
    • App Switcher
    • App
    • Area Chart
    • Avatar
    • Badge
    • Bar Chart
    • Blade
    • Button Group
    • Button
    • Buyer Signal
    • Calendar
    • Checkbox
    • Chips
      • Variants
    • Dashboard Component
    • Dashboard Page
    • Dashboard
    • Data Card
    • Datepicker
    • Day picker
    • Divider
    • Draggable
    • Fieldset
    • Filter
    • Form Field
    • Icon
    • Iconbar
    • Input
    • Layout
    • Line Chart
    • LoadingIndicator
    • LoadingSpinner
    • Menu
    • Message
    • Mini Bar Chart
    • Modal
    • MultiSelect
    • Notice
    • Overlay
    • Pagination
    • Popover Menu
    • Popover
    • Primary navigation
    • Progress Bar
    • Radio
    • Range Input
    • Range Slider
    • Rich Text Editor
    • Secondary Navigation
    • Select
    • Sheet
    • Sidebar Section
    • Sidebar Subsection
    • Steps
    • Sub Menu
    • Table
    • Tabs
    • Tag List
    • Tag
    • Textarea
    • Tiles
    • Timepicker
    • Toast
    • Toggle
    • Tooltip
    • Workflow
    • Zero State

# Chips

Chips show the status of something in a compact form.

# Variants

Chips come in various colors to denote different types of information.

<template>
  <DemoGrid>
    <ci-chip
      v-for="variant in variants"
      :key="variant"
      :variant="variant"
    >
      <template>
        {{variant}}
      </template>
    </ci-chip>
  </DemoGrid>
</template>
<script>
export default {
  data() {
    return {
      variants: [ 'default', 'danger', 'warning', 'success', 'muted', 'dark', 'signal' ]
    }
  }
}
</script>
Last Updated: 5/22/2025, 7:20:33 AM

← Checkbox Dashboard Component →