2024-02-15 10:20:27 -08:00
|
|
|
export default {
|
|
|
|
name: 'Badge',
|
|
|
|
selector: '.badge',
|
|
|
|
validInnerComponents: [
|
|
|
|
'Text',
|
|
|
|
'Icon'
|
|
|
|
],
|
|
|
|
variants: {
|
2024-02-15 14:29:16 -08:00
|
|
|
notification: '.-notification'
|
2024-02-15 10:20:27 -08:00
|
|
|
},
|
|
|
|
defaultRules: [
|
|
|
|
{
|
|
|
|
directives: {
|
|
|
|
background: '--cGreen'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
variant: 'notification',
|
|
|
|
directives: {
|
|
|
|
background: '--cRed'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|