File tree Expand file tree Collapse file tree
core/designsystem/src/main/java/com/threegap/bitnagil/designsystem/component/atom Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import androidx.compose.ui.semantics.Role
2929import androidx.compose.ui.semantics.role
3030import androidx.compose.ui.semantics.semantics
3131import androidx.compose.ui.text.TextStyle
32+ import androidx.compose.ui.text.style.LineHeightStyle
3233import androidx.compose.ui.tooling.preview.Preview
3334import androidx.compose.ui.unit.dp
3435import com.threegap.bitnagil.designsystem.BitnagilTheme
@@ -93,7 +94,12 @@ fun BitnagilSelectButton(
9394 Text (
9495 text = title,
9596 color = contentColor,
96- style = titleTextStyle,
97+ style = titleTextStyle.copy(
98+ lineHeightStyle = LineHeightStyle (
99+ alignment = LineHeightStyle .Alignment .Center ,
100+ trim = LineHeightStyle .Trim .None ,
101+ ),
102+ ),
97103 )
98104
99105 description?.let {
You can’t perform that action at this time.
0 commit comments