2021-03-17 09:16:30 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import "../../imports"
|
|
|
|
import "../../shared"
|
|
|
|
|
2021-05-28 17:35:21 +00:00
|
|
|
StatusIconButton {
|
|
|
|
id: moreActionsBtn
|
|
|
|
anchors.verticalCenter: parent.verticalCenter
|
|
|
|
icon.name: "dots-icon"
|
|
|
|
iconColor: Style.current.contextMenuButtonForegroundColor
|
|
|
|
hoveredIconColor: Style.current.contextMenuButtonForegroundColor
|
|
|
|
highlightedBackgroundColor: Style.current.contextMenuButtonBackgroundHoverColor
|
2021-03-17 09:16:30 +00:00
|
|
|
}
|