Hello,
trying to tap into the general wisdom of the community and see if anybody had to come up with a solution on documenting a component property's type that happens to be a set of distinct values (enum values). For instance a component can have its type specified as a union member of values:
/**
* Specifies the background of the component. The default value of this property is theme driven.
*/
background?:
| 'neutral'
| 'orange'
| 'green'
| 'teal';
In Storybook, lets presume you have an mdx page rendering the properties of the component using an ArgTypes docs block. Does SB has a solution to document the individual property values?