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