From 9ddd6ca3d9ef1d8a850b454f01b2b81361cb1c8d Mon Sep 17 00:00:00 2001 From: Pascal Precht Date: Thu, 14 Oct 2021 12:48:06 +0200 Subject: [PATCH] chore: remove `Identicon` component --- ui/shared/Identicon.qml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 ui/shared/Identicon.qml diff --git a/ui/shared/Identicon.qml b/ui/shared/Identicon.qml deleted file mode 100644 index 1798a81c96..0000000000 --- a/ui/shared/Identicon.qml +++ /dev/null @@ -1,32 +0,0 @@ -import QtQuick 2.13 - -import utils 1.0 - -Rectangle { - id: roundedImage - property url source:"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAAg0lEQVR4nOzXwQmAMBAFURV7sQybsgybsgyr0QYUlE1g+Mw7ioQMe9lMQwhDaAyhMYTGEJqYkPnrj/t5XE/ft2UdW1yken7MRAyhMYTGEBpDaAyhKe9JbzvSX9WdLWYihtAYQuMLkcYQGkPUScxEDKExhMYQGkNoDKExhMYQmjsAAP//ZfIUZgXTZXQAAAAASUVORK5CYII=" - width: 40 - height: 40 - color: Style.current.background - radius: 50 - border.width: 1 - border.color: Style.current.borderSecondary - - Image { - width: parent.width - height: parent.height - fillMode: Image.PreserveAspectFit - anchors.horizontalCenter: parent.horizontalCenter - anchors.verticalCenter: parent.verticalCenter - source: roundedImage.source - mipmap: true - smooth: false - antialiasing: true - } -} - -/*##^## -Designer { - D{i:0;formeditorColor:"#4c4e50";formeditorZoom:2} -} -##^##*/