OutlinedButtonSample
@Preview
@Composable
fun OutlinedButtonSample() {
OutlinedButton(onClick = { /* Do something! */ }) { Text("Outlined Button") }
}
OutlinedButtonWithAnimatedShapeSample
@OptIn(ExperimentalMaterial3ExpressiveApi::class)
@Preview
@Composable
fun OutlinedButtonWithAnimatedShapeSample() {
OutlinedButton(onClick = {}, shapes = ButtonDefaults.shapes()) { Text("Outlined Button") }
}