mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-04-08 23:02:05 -04:00
16 lines
333 B
QML
16 lines
333 B
QML
import QtQuick
|
|
import qs.Common
|
|
import qs.Widgets
|
|
|
|
StyledText {
|
|
property string title
|
|
text: title
|
|
font.pixelSize: Theme.fontSizeMedium
|
|
font.weight: Font.Medium
|
|
color: Theme.primary
|
|
topPadding: Theme.spacingM
|
|
bottomPadding: Theme.spacingXS
|
|
width: parent.width
|
|
horizontalAlignment: Text.AlignLeft
|
|
}
|