27 lines
471 B
JavaScript
27 lines
471 B
JavaScript
export default {
|
|
name: 'Badge',
|
|
selector: '.badge',
|
|
validInnerComponents: ['Text', 'Icon'],
|
|
variants: {
|
|
notification: '.-notification',
|
|
},
|
|
defaultRules: [
|
|
{
|
|
component: 'Root',
|
|
directives: {
|
|
'--badgeNotification': 'color | --cRed',
|
|
},
|
|
},
|
|
{
|
|
directives: {
|
|
background: '--cGreen',
|
|
},
|
|
},
|
|
{
|
|
variant: 'notification',
|
|
directives: {
|
|
background: '--cRed',
|
|
},
|
|
},
|
|
],
|
|
}
|