mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-09 05:52:41 +00:00
426c116bac
Use it as import shared 1.0, import shared.controls 1.0 etc instead of import "../../../shared" Closes #3934
22 lines
357 B
QML
22 lines
357 B
QML
import QtQuick 2.13
|
|
|
|
import utils 1.0
|
|
import shared.panels 1.0
|
|
|
|
SVGImage {
|
|
id: loadingImg
|
|
source: Style.svg("loading")
|
|
width: 25
|
|
height: 25
|
|
fillMode: Image.Stretch
|
|
RotationAnimator {
|
|
target: loadingImg;
|
|
from: 0;
|
|
to: 360;
|
|
duration: 1200
|
|
running: true
|
|
loops: Animation.Infinite
|
|
}
|
|
}
|
|
|