2021-03-05 02:35:15 +03:00
|
|
|
// SPDX-FileCopyrightText: 2021 Nheko Contributors
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-01-12 17:03:39 +03:00
|
|
|
import QtQuick 2.5
|
2019-10-06 12:08:13 +03:00
|
|
|
import QtQuick.Controls 2.1
|
2019-09-09 22:42:33 +03:00
|
|
|
|
|
|
|
Label {
|
2020-10-08 22:11:21 +03:00
|
|
|
color: colors.brightText
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
height: contentHeight * 1.2
|
|
|
|
width: contentWidth * 1.2
|
|
|
|
|
|
|
|
background: Rectangle {
|
|
|
|
radius: parent.height / 2
|
2020-10-26 15:50:44 +03:00
|
|
|
color: colors.alternateBase
|
2020-10-08 22:11:21 +03:00
|
|
|
}
|
2019-09-09 22:42:33 +03:00
|
|
|
|
|
|
|
}
|