Design System Docz assets
Where to put component documentation related assets
To respect the modularity of each component, the suggested approach is to have a __docs__ dicrectory in each component's directory and put all the documentation assets there.
The following structure is used for the images and other doc related stuff:
src/select
āāā __docs__
āĀ Ā āāā docs.fixtures.js
āĀ Ā āāā docs.styles.scss
āĀ Ā āāā img
āĀ Ā āāā select_doc_briefexaple1.png
āĀ Ā āāā select_doc_briefexaple2.png
How to use images in .mdx files
The default  notation authomatically exposes the image assets to the bundler and the pipeline will upload them to the S3 bucket.
However for the <Playground/> components with image address, the suggested approach would be:
import fooImgUrl from './__docs__/img/foo.png'
<Playground>
<FooComponent img={fooImgUrl} />
</Playground>