1// SPDX-FileCopyrightText: 2021 Nheko Contributors
2//
3// SPDX-License-Identifier: GPL-3.0-or-later
4
5import QtQuick 2.5
6import QtQuick.Controls 2.1
7import im.nheko 1.0
8
9Label {
10    color: Nheko.colors.text
11    horizontalAlignment: Text.AlignHCenter
12    height: contentHeight * 1.2
13    width: contentWidth * 1.2
14
15    background: Rectangle {
16        radius: parent.height / 2
17        color: Nheko.colors.alternateBase
18    }
19
20}
21