mirror of
https://github.com/slint-ui/slint.git
synced 2025-08-30 23:27:22 +00:00
11 lines
No EOL
316 B
Text
11 lines
No EOL
316 B
Text
// Copyright © SixtyFPS GmbH <info@slint.dev>
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
import { Theme } from "theme.slint";
|
|
import { Label } from "label.slint";
|
|
|
|
export component TitleLabel inherits Text {
|
|
font-family: Theme.font-family;
|
|
font-size: Theme.font-size-medium;
|
|
font-weight: Theme.font-weight-bold;
|
|
} |