mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-13 20:39:58 -05:00
17 lines
314 B
QML
17 lines
314 B
QML
import QtQuick
|
|
import QtQuick.Layouts
|
|
import qs.modules.common
|
|
|
|
WToolbarButton {
|
|
id: root
|
|
implicitWidth: height
|
|
contentItem: Item {
|
|
FluentIcon {
|
|
anchors.centerIn: parent
|
|
icon: root.icon.name
|
|
implicitSize: 18
|
|
color: root.fgColor
|
|
}
|
|
}
|
|
}
|