pleroma-fe/src/components/badge.style.js
2026-01-06 16:22:52 +02:00

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',
},
},
],
}