yandere_fe/src/components/badge.style.js

25 lines
360 B
JavaScript
Raw Normal View History

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