Documentation

borderRadius

The border radius, in pixels, CSS string, or an object with separate values per corner.

borderRadius?:
| string
| number
| {
topLeft?: string | number;
topRight?: string | number;
bottomLeft?: string | number;
bottomRight?: string | number;
topStart?: string | number;
bottomStart?: string | number;
topEnd?: string | number;
bottomEnd?: string | number;
};

Related