<div class='type'>Compose Modifier</div>

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


<h2 id="defaultminsize-minwidth-minheight">defaultMinSize</h2>

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


```kotlin
fun Modifier.defaultMinSize(minWidth: Dp = Dp.Unspecified, minHeight: Dp = Dp.Unspecified) =
    this.then(UnspecifiedConstraintsElement(minWidth = minWidth, minHeight = minHeight))
```


Constrain the size of the wrapped layout only when it would be otherwise unconstrained: the
`minWidth` and `minHeight` constraints are only applied when the incoming corresponding
constraint is `0`. The modifier can be used, for example, to define a default min size of a
component, while still allowing it to be overidden with smaller min sizes across usages.