24 lines
393 B
QML
24 lines
393 B
QML
|
|
import QtQuick
|
||
|
|
import qs.Common
|
||
|
|
import qs.Services
|
||
|
|
import qs.Widgets
|
||
|
|
import qs.Modules.Plugins
|
||
|
|
|
||
|
|
PluginComponent {
|
||
|
|
id: root
|
||
|
|
|
||
|
|
horizontalBarPill: Component {
|
||
|
|
StyledText {
|
||
|
|
text: "TS"
|
||
|
|
color: Theme.surfaceText
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
verticalBarPill: Component {
|
||
|
|
StyledText {
|
||
|
|
text: "TS"
|
||
|
|
color: Theme.surfaceText
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|