discourse/app/assets/javascripts/select-kit/addon/components/selected-font.gjs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
321 B
Plaintext
Raw Normal View History

2025-01-02 07:28:23 +08:00
import concatClass from "discourse/helpers/concat-class";
import SelectedNameComponent from "select-kit/components/selected-name";
export default class SelectedFont extends SelectedNameComponent {
<template>
<span class={{concatClass "name" this.item.classNames}}>
{{this.label}}
</span>
</template>
}