mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 22:06:25 +00:00
09c0f1b0c8
Closes #13386
22 lines
349 B
QML
22 lines
349 B
QML
import QtQuick 2.15
|
|
import QtQuick.Layouts 1.15
|
|
|
|
import shared.controls 1.0
|
|
|
|
Item {
|
|
RowLayout {
|
|
anchors.centerIn: parent
|
|
|
|
CopyButton {
|
|
textToCopy: "Some text"
|
|
}
|
|
|
|
CopyButtonWithCircle {
|
|
textToCopy: "Some text"
|
|
successCircleVisible: true
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Controls
|