summaryrefslogtreecommitdiffstats
path: root/components/theme/contents/ui/main.qml
blob: c3c7ac8ffaff0d2769ed80ae73bb7b5b6699ebd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import QtQuick 2.7
import QtQuick.Layouts 1.2

import org.kube.components.theme 1.0 as KubeTheme

Item {
    height: 200
    width: 200

    RowLayout {

        anchors.fill: parent

        Rectangle {

            height: 50
            width: 50

            color: KubeTheme.Colors.text
        }
    }
}