nosignal-shell/modules/bar/components/Clock.qml
2025-05-05 14:50:18 +10:00

29 lines
677 B
QML

import "root:/widgets"
import "root:/services"
import "root:/config"
import QtQuick
StyledRect {
id: root
property color colour: Colours.palette.peach
MaterialIcon {
id: icon
text: "calendar_month"
color: root.colour
anchors.horizontalCenter: root.vertical ? parent.horizontalCenter : undefined
}
AnchorText {
prevAnchor: icon
horizontalAlignment: StyledText.AlignHCenter
text: root.vertical ? Time.format("hh\nmm") : Time.format("hh:mm • dddd, dd MMMM")
font.pointSize: Appearance.font.size.smaller
font.family: Appearance.font.family.mono
color: root.colour
}
}