aboutsummaryrefslogtreecommitdiff
path: root/src/components/badge.style.js
blob: 37833cdb062b838843a9b8354a36d9feb3e7afc8 (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
export default {
  name: 'Badge',
  selector: '.badge',
  validInnerComponents: [
    'Text',
    'Icon'
  ],
  variants: {
    notification: '.-notification'
  },
  defaultRules: [
    {
      directives: {
        background: '--cGreen'
      }
    },
    {
      variant: 'notification',
      directives: {
        background: '--cRed'
      }
    }
  ]
}