// Copyright © SixtyFPS GmbH // SPDX-License-Identifier: MIT import { Typography, TextStyle } from "../styling/typography.slint"; import { MaterialPalette } from "../styling/material_palette.slint"; export component MaterialText inherits Text { in property style: Typography.body_medium; font_size: root.style.font_size; font_weight: root.style.font_weight; color: MaterialPalette.on_background; overflow: elide; }