react-magma
react-magma copied to clipboard
Select: Support disabling individual items
Currently you can only disable the entire Select component, but not individual items within it. We should support this.
items={[
{
{ label: 'Red', value: 'red', disabled: false },
{ label: 'Blue', value: 'blue', disabled: true },
},
}]