summaryrefslogtreecommitdiffstats
path: root/tpl/objects/badge.pug
blob: c91e74f09cb031d770a0731002896f81bb6671db (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
mixin badge(variant)
    -
        let classes = {
            'o-badge':       true,
            'o-badge--pill': !!attributes.pill,
            'o-badge--quiet': !!attributes.quiet,
            'o-menu__badge': !!attributes.menu,
        }
        if (attributes.size) {
            classes['o-badge--' + attributes.size] = true
        }
        if (variant) {
            classes['o-badge--' + variant] = true
        }

    if attributes.href
        a(href=attributes.href class=classes)
            if attributes.icon
                +icon(attributes.icon)
                = ' '
            span.o-badge__label
                block
    else
        span(class=classes)
            if attributes.icon
                +icon(attributes.icon)
                = ' '
            span.o-badge__label
                block