---
title: "MinSizeScope"
description: "An interface that introduces min size properties to a Style receiver scope interface."
type: "interface"
lastmod: "2026-05-20T01:13:53.377780Z"
---
## API Reference

> Source set: Common

```kotlin
@ExperimentalFoundationStyleApi
interface MinSizeScope
```

An interface that introduces min size properties to a [Style](/jetpack-compose/androidx.compose.foundation/foundation/interfaces/Style) receiver scope interface.

## Functions

### minWidth

```kotlin
fun minWidth(value: Dp)
```

Constrains the minimum width of the component. The component's width, including padding, will
be at least this value.

This property is *not* inherited

#### Parameters

| | |
| --- | --- |
| value | The minimum width. |

### minHeight

```kotlin
fun minHeight(value: Dp)
```

Constrains the minimum height of the component. The component's height, including padding,
will be at least this value.

This property is *not* inherited

#### Parameters

| | |
| --- | --- |
| value | The minimum height. |
