# DimensionsSetProps

**Kind:** Interface

Style props for the dimensions of an element.

## Properties

### `height?`

Type: `OptionalResponsiveProp<HeightProperty<Length>>`

Specifies the height of an element.

### `maxHeight?`

Type: `OptionalResponsiveProp<MaxHeightProperty<Length>>`

Sets the maximum height of an element. It prevents the used value of the `height` property from becoming larger than the value specified for `maxHeight`.

### `maxWidth?`

Type: `OptionalResponsiveProp<MaxWidthProperty<Length>>`

Sets the maximum width of an element. It prevents the used value of the `width` property from becoming larger than the value specified by `maxWidth`.

### `minHeight?`

Type: `OptionalResponsiveProp<MinHeightProperty<Length>>`

Sets the minimum height of an element. It prevents the used value of the `height` property from becoming smaller than the value specified for `minHeight`.

### `minWidth?`

Type: `OptionalResponsiveProp<MinWidthProperty<Length>>`

Sets the minimum width of an element. It prevents the used value of the `width` property from becoming smaller than the value specified for `minWidth`.

### `width?`

Type: `OptionalResponsiveProp<WidthProperty<Length>>`

Specifies the width of an element.
