AlertDialog
In Material 3 Compose
@Composable
fun ProvideTextStyleSample() {
ProvideTextStyle(MaterialTheme.typography.headlineSmall) {
Text("This text inherits the provided style")
}
}