lux-shell/components/LucideIcon.qml
2025-09-06 08:45:35 -04:00

13 lines
263 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
}
}
}