2
0
mirror of https://github.com/status-im/status-desktop.git synced 2025-02-17 09:08:49 +00:00

17 lines
313 B
QML

import QtQuick 2.13
import QtQuick.Controls 2.13
import StatusQ.Controls 0.1
StatusRoundButton {
id: btnAdd
property bool checked: false
width: 36
height: 36
icon.name: "add"
icon.rotation: checked ? 45 : 0
type: StatusRoundButton.Type.Secondary
onPressed: checked = !checked
}