forked from Shinonome/dots-hyprland
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
|
|
}
|
|
}
|
|
}
|