1
mirror of https://github.com/monero-project/monero-gui synced 2024-11-25 10:47:19 +01:00
monero-gui/components/MenuButtonDivider.qml

16 lines
373 B
QML
Raw Normal View History

2019-04-11 03:17:29 +02:00
import QtQuick 2.9
import "." as MoneroComponents
import "effects/" as MoneroEffects
Rectangle {
color: MoneroComponents.Style.appWindowBorderColor
height: 1
MoneroEffects.ColorTransition {
targetObj: parent
blackColor: MoneroComponents.Style._b_appWindowBorderColor
whiteColor: MoneroComponents.Style._w_appWindowBorderColor
}
}