aboutsummaryrefslogtreecommitdiff
path: root/src/components/badge.style.js
blob: 3ac7d8c02d8078520359725292863296d86e1200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
export default {
  name: 'Badge',
  selector: '.badge',
  validInnerComponents: [
    'Text',
    'Icon'
  ],
  variants: {
    normal: '.neutral',
    notification: '.notification'
  },
  defaultRules: [
    {
      directives: {
        background: '--cGreen'
      }
    },
    {
      variant: 'notification',
      directives: {
        background: '--cRed'
      }
    }
  ]
}