Skip to content
On this page

Border Radius

Parent: sidebar

A Boolean which is whether you'd like to set the border radius of the icon.

If you wish to set the border radius of the icon, you can do so by setting this to the size instead of a Boolean.

Example Usage 1

js
theme: SoftUI({
    icons: {
        sidebar: {
            borderRadius: false
        }
    }
})

Example Usage 2

js
theme: SoftUI({
    icons: {
        sidebar: {
            borderRadius: "1rem"
        }
    }
})

Types

Released under the MIT License.