mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 13:56:10 +00:00
7114240e72
closes #3898
17 lines
313 B
QML
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
|
|
}
|