10 lines
220 B
QML
10 lines
220 B
QML
import QtQuick
|
|
import "../services" as S
|
|
import NovaStats as NS
|
|
|
|
Rectangle {
|
|
width: (parent?.width ?? 16) - 16
|
|
height: 1
|
|
anchors.horizontalCenter: parent?.horizontalCenter
|
|
color: NS.ThemeService.base03
|
|
}
|