mirror of
https://github.com/obhq/obliteration.git
synced 2025-04-02 11:02:08 -04:00
14 lines
240 B
Text
14 lines
240 B
Text
import { VerticalBox } from "std-widgets.slint";
|
|
|
|
export component Header {
|
|
in property <string> title;
|
|
|
|
VerticalBox {
|
|
padding: 0;
|
|
|
|
Text {
|
|
text: root.title;
|
|
font-size: 30px;
|
|
}
|
|
}
|
|
}
|