<div class='sourceset sourceset-common'>Common</div>

```kotlin
class Clickable(
        val tag: String,
        override val styles: TextLinkStyles? = null,
        override val linkInteractionListener: LinkInteractionListener?,
    ) : LinkAnnotation()
```

An annotation that contains a clickable marked with [tag](#tag). When clicking on the text to which
this annotation is attached, the app will trigger a [linkInteractionListener](/jetpack-compose/androidx.compose.ui/ui-text/interfaces/LinkInteractionListener) listener.

## Functions

<h2 id="copy-tag-styles-linkinteractionlistener">copy</h2>

```kotlin
fun copy(
            tag: String = this.tag,
            styles: TextLinkStyles? = this.styles,
            linkInteractionListener: LinkInteractionListener? = this.linkInteractionListener,
        ) = Clickable(tag, styles, linkInteractionListener)
```

Returns a copy of this [Clickable](/jetpack-compose/androidx.compose.ui/ui-text/classes/LinkAnnotation.Clickable), optionally overriding some of the values.