yhatt / jsx-slack

Build JSON object for Slack Block Kit surfaces from JSX
https://jsx-slack.netlify.app/
MIT License
467 stars 16 forks source link

Add `description` prop support to <Option> component #285

Closed yhatt closed 1 year ago

yhatt commented 1 year ago

Added description prop support to <Option> component for static select (single/multiple). The description appears next to the item label in small gray text.

<Blocks>
  <Actions>
    <Select>
      <Option description="Description">Main label</Option>
    </Select>
  </Actions>
</Blocks>

Close #284.