@Composable
fun ElevatedButtonExample(onClick: () -> Unit) {
   
ElevatedButton(onClick = { onClick() }) {
       
Text("Elevated")
   
}
}