How can I show a menu item in disabled state in sidebar?

I am using Antd with Refine. I want to opt for disabled state using meta in resources, like, {
name: "users",
list: "/users",
meta: {
label: "Users",
icon: "👤",
disabled: true, // This resource will be shown as disabled
},
},

Is it possible with default props? also the sidebar is rendered by ThemedLayoutV2 from refine/antd
Was this page helpful?