-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move TextWithLabelMolecule to the designsystem module.
- Loading branch information
Showing
2 changed files
with
36 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
...otlin/io/element/android/libraries/designsystem/atomic/molecules/TextWithLabelMolecule.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/* | ||
* Copyright 2024 New Vector Ltd. | ||
* | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
* Please see LICENSE in the repository root for full details. | ||
*/ | ||
|
||
package io.element.android.libraries.designsystem.atomic.molecules | ||
|
||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import io.element.android.compound.theme.ElementTheme | ||
import io.element.android.libraries.designsystem.theme.components.Text | ||
|
||
@Composable | ||
fun TextWithLabelMolecule( | ||
label: String, | ||
text: String, | ||
modifier: Modifier = Modifier, | ||
) { | ||
Column(modifier = modifier) { | ||
Text( | ||
text = label, | ||
style = ElementTheme.typography.fontBodySmRegular, | ||
color = ElementTheme.colors.textSecondary, | ||
) | ||
Text( | ||
text = text, | ||
style = ElementTheme.typography.fontBodyMdRegular, | ||
color = ElementTheme.colors.textPrimary, | ||
) | ||
} | ||
} | ||
|