### DisableSelectionSample
```kotlin
@Composable
fun DisableSelectionSample() {
    SelectionContainer {
        Column {
            Text("Text 1")
            DisableSelection {
                Text("Text 2")
                Text("טקסט 3")
            }
            Text("Text 3")
        }
    }
}
```