mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 08:17:11 +02:00
11 lines
229 B
QML
11 lines
229 B
QML
import QtQuick 2.4
|
|
import "../styles"
|
|
|
|
Item {
|
|
id: root
|
|
HifiConstants { id: hifi }
|
|
property real size: hifi.layout.spacing
|
|
property real multiplier: 1.0
|
|
height: size * multiplier
|
|
width: size * multiplier
|
|
}
|