summaryrefslogtreecommitdiff
path: root/SDL_Core/src/components/qt_hmi/References/Work/bananasnacks/qml/Bananas/Components/ImageButton.qml
blob: 81c18a43111d96966cae82da2d07526eea08b5ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import QtQuick 2.0

Button {
    property alias icon: icon.source

    width: icon.width + 30

    Image {
        id: icon
        anchors.horizontalCenter: parent.horizontalCenter
        anchors.verticalCenter: parent.verticalCenter
    }
}