This repository has been archived on 2021-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
ui/qml/widgets/IconButton.qml

14 lines
282 B
QML
Raw Normal View History

2018-10-28 02:49:14 +00:00
import QtGraphicalEffects 1.0
import QtQuick 2.7
import QtQuick.Controls 2.4
import QtQuick.Controls.Material 2.0
import QtQuick.Layouts 1.3
SimpleButton {
id: root
font: "FontAwesome"
text: icon + (label == "" ? "" : " " + label)
property string icon
property string label
}