---
title: "ClickableChipScale"
description: "Defines the scale for all TV states of [ClickableChip]. Note: This scale must always be a
non-negative float."
type: "class"
---

<div class='type'>Class</div>


<a id='references'></a>

<div class='sourceset sourceset-android'>Android</div>


```kotlin
@ExperimentalTvMaterial3Api
class ClickableChipScale
internal constructor(
    @FloatRange(from = 0.0) internal val scale: Float,
    @FloatRange(from = 0.0) internal val focusedScale: Float,
    @FloatRange(from = 0.0) internal val pressedScale: Float,
    @FloatRange(from = 0.0) internal val disabledScale: Float,
    @FloatRange(from = 0.0) internal val focusedDisabledScale: Float,
)
```


Defines the scale for all TV states of `ClickableChip`. Note: This scale must always be a
non-negative float.


## Companion Object

#### Properties

<div class='sourceset sourceset-android'>Android</div>


```kotlin
val None =
        ClickableChipScale(
            scale = 1f,
            focusedScale = 1f,
            pressedScale = 1f,
            disabledScale = 1f,
            focusedDisabledScale = 1f,
        )
```


Signifies the absence of a `ScaleIndication` in ClickableChip component.





