---
title: "decoratedSuffix"
type: "property"
lastmod: "2026-08-27"
---
## API Reference

> Source set: Common

```kotlin
val decoratedSuffix: @Composable (() -> Unit)? =
        if (suffix != null && showAffix) {
            @Composable {
                Decoration(contentColor = suffixColor, textStyle = bodyLarge, content = suffix)
            }
        } else null
```
