ArtistDropdown example:

```tsx
import { ArtistDropdown } from '@theorchard/suite-participant-components';

<ArtistDropdown
    formFieldProps={{
        className: 'StyleguideFormField',
        label: 'Test',
        help: 'Example for ArtistDropdown component',
    }}
    multi={true}
    onChange={(value) => setState({ value })}
    value={state.value}
    vendorId={100}
    subaccountId={100}
    projectId={'456'}
    productName={'Product Name'}
    upc={'UPC'}
    participationRole={'performer'}
    isParticipantProfilesViewEnabled={true}
    isParticipantProfilesAddEnabled={true}
    isParticipantProfilesNeo4jSearchEnabled={true}
    isParticipantProfilesNeo4jCreateEnabled={true}
    isCorrectionMode={true}
    metaLanguageCode={'ja'}
    isUpdateArtistMode={true}
    isAnalyticsMode={true}
/>;
```
