mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
21 lines
466 B
QML
21 lines
466 B
QML
import QtQuick
|
|
import QtQuick.Controls
|
|
import qs.Commons
|
|
|
|
TextField {
|
|
id: root
|
|
property string label: ""
|
|
property string description: ""
|
|
property string defaultValue: ""
|
|
|
|
font.family: "JetBrainsMono Nerd Font"
|
|
font.pixelSize: Style.fontSizeS
|
|
color: Color.mOnSurface
|
|
background: Rectangle {
|
|
color: Color.mSurfaceVariant
|
|
border.color: root.focus ? Color.mPrimary : Color.mOutline
|
|
border.width: Style.borderS
|
|
radius: Style.radiusS
|
|
}
|
|
}
|