1// Copyright © SixtyFPS GmbH <info@slint.dev>
2// SPDX-License-Identifier: MIT
3
4import { Theme } from "theme.slint";
5import { Label } from "label.slint";
6
7export component TitleLabel inherits Text {
8 font-family: Theme.font-family;
9 font-size: Theme.font-size-medium;
10 font-weight: Theme.font-weight-bold;
11}