---
title: "AbsoluteRoundedCornerShape"
description: "A shape describing the rectangle with rounded corners.

This shape will not automatically mirror the corner sizes in [LayoutDirection.Rtl], use
[RoundedCornerShape] for the layout direction aware version of this shape."
type: "class"
---

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


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

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


```kotlin
class AbsoluteRoundedCornerShape(
    topLeft: CornerSize,
    topRight: CornerSize,
    bottomRight: CornerSize,
    bottomLeft: CornerSize,
) :
    CornerBasedShape(
        topStart = topLeft,
        topEnd = topRight,
        bottomEnd = bottomRight,
        bottomStart = bottomLeft,
    )
```


A shape describing the rectangle with rounded corners.

This shape will not automatically mirror the corner sizes in `LayoutDirection.Rtl`, use
`RoundedCornerShape` for the layout direction aware version of this shape.

#### Parameters

| | |
| --- | --- |
| topLeft | a size of the top left corner |
| topRight | a size of the top right corner |
| bottomRight | a size of the bottom right corner |
| bottomLeft | a size of the bottom left corner |




