Composable Component

OutlinedButton

Outlined buttons are medium-emphasis buttons.

OutlinedButton social preview

OutlinedButtonSample

@Composable
fun OutlinedButtonSample() {
    OutlinedButton(onClick = { /* Do something! */ }) { Text("Outlined Button") }
}