mirror of
https://github.com/Yubico/yubioath-flutter.git
synced 2024-12-02 05:50:34 +03:00
10 lines
264 B
QML
10 lines
264 B
QML
import QtQuick 2.5
|
|
import QtQuick.Dialogs 1.2
|
|
|
|
MessageDialog {
|
|
icon: StandardIcon.Warning
|
|
title: qsTr("Delete credential?")
|
|
text: qsTr("Are you sure you want to delete this credential?")
|
|
standardButtons: StandardButton.Ok | StandardButton.Cancel
|
|
}
|