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