mirror of
https://github.com/slint-ui/slint.git
synced 2025-11-18 11:20:50 +00:00
11 lines
No EOL
359 B
Text
11 lines
No EOL
359 B
Text
// Copyright © SixtyFPS GmbH <info@slint-ui.com>
|
|
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-commercial
|
|
|
|
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;
|
|
} |