'How can I remove paddins from my styled text in jetpack compose?

I'm trying to remove the padding at the bottom and top of the text, but I haven't been able to remove the padding successfully, any suggestions?

Text(
    text = "DT",
    color = androidx.compose.ui.graphics.Color.Black,
    style = androidx.compose.ui.text.TextStyle(
        fontFamily = poppinsFamily,
        fontWeight = FontWeight.Bold,
        textAlign = TextAlign.Center
    ),
    fontSize = 54.sp,
    modifier = Modifier.padding(0.dp, 0.dp, 0.dp, 0.dp),
)

padding error



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source