mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 14:26:34 +00:00
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
|