13 lines
244 B
Kotlin
13 lines
244 B
Kotlin
package eu.kanade.presentation.components
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
/**
|
|
* Exposing some internal tokens.
|
|
*
|
|
* @see androidx.compose.material3.tokens.IconButtonTokens
|
|
*/
|
|
object IconButtonTokens {
|
|
val StateLayerSize = 40.0.dp
|
|
}
|