lux-shell/components/LucideIcon.qml
2025-09-05 17:30:09 -04:00

14 lines
264 B
QML

import qs.config
import QtQuick
Text {
font.family: Styling.lucide.font.family
font.pixelSize: 16
color: Styling.theme.basecontent
Behavior on color {
ColorAnimation {
duration: Styling.animations.speed.fast
}
}
}