Description
Sometimes we need to have a MultiSwitch button not with the Caption text, but just with the icons. (UUI3 Loveship)
& provide cx for styling

Describe the solution you'd like
import IconOne from '.../assets';
import IconTwo from '.../assets';
<MultiSwitch
onValueChange={(newValue) => { ... }}
items={[{"id":1,"icon": IconOne},{"id":2,"icon": IconTwo}]}
value={1}
cx={someClass}
/>