react-magma icon indicating copy to clipboard operation
react-magma copied to clipboard

Select: Support disabling individual items

Open silvalaura opened this issue 1 year ago • 0 comments

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 },
          },
}]

image

silvalaura avatar Mar 29 '24 15:03 silvalaura