pleroma-fe/src/components/badge.style.js

27 lines
471 B
JavaScript
Raw Normal View History

export default {
name: 'Badge',
selector: '.badge',
2026-01-06 16:22:52 +02:00
validInnerComponents: ['Text', 'Icon'],
variants: {
2026-01-06 16:22:52 +02:00
notification: '.-notification',
},
defaultRules: [
{
component: 'Root',
directives: {
2026-01-06 16:22:52 +02:00
'--badgeNotification': 'color | --cRed',
},
},
{
directives: {
2026-01-06 16:22:52 +02:00
background: '--cGreen',
},
},
{
variant: 'notification',
directives: {
2026-01-06 16:22:52 +02:00
background: '--cRed',
},
},
],
}