Skip to contentSkip to navigationSkip to topbar
Paste assistant Assistant
Figma
Star

Visual Picker

Version 2.0.3GithubStorybook

Visual Picker is a stylistically enhanced checkbox or radio selection element.

Component preview theme
const VisualPickerExample = () => {
const [value, setValue] = React.useState('')
return (
<VisualPickerRadioGroup
name={useUID()}
id={useUID()}
legend={
<Text as="span" color="currentColor">
Select data source
</Text>
}
onChange={(newValue) => {
setValue(newValue);
}}
helpText="The source sends data to the client."
value={value}
>
<VisualPickerRadio id={useUID()} value='1' labelText="my first site (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
My first site
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityAvailable">
Enabled
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
<Avatar name="site user3" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='2' labelText="test site (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
Test site
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityOffline">
Offline
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='3' labelText="ACME (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
ACME
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityAvailable">
Enabled
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
<Avatar name="site user3" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
</VisualPickerRadioGroup>
);
}
render(
<VisualPickerExample/>
)

Guidelines

Guidelines page anchor

About Visual Picker

About Visual Picker page anchor

Visual Picker is a selection component that allows users to select from a set of options. It is ideal to use in situations where users need to be able to see and compare different options before making a selection.

This component is built on top of Radio Group and Checkbox guidelines.

Visual Picker follows the same accessibility guidelines as Radio Group and Checkbox.

Like all input elements, both Radio and Checkbox Visual Pickers require a group label that describes the collection. Provide an accessible label using the legend prop on VisualPickerRadioGroup or VisualPickerCheckboxGroup. The grouping should be visually implicit, but a description still needs to be provided for assistive technology.

Always use the labelText prop on VisualPickerRadio and VisualPickerCheckbox to provide a descriptive string for each option.

When focused on a Visual Picker Radio control, use arrow keys to navigate to the other radios. When focused on a Visual Picker Checkbox control, use the tab key to navigate to the other checkboxes.

Use a Visual Picker Radio when a user must select a single option.

Vertical Radio

Vertical Radio page anchor

Vertical is the default orientation for Visual Picker.

Component preview theme
const VisualPickerExample = () => {
const [value, setValue] = React.useState('')
return (
<VisualPickerRadioGroup
name={useUID()}
id={useUID()}
legend={
<Text as="span" color="currentColor">
Select data source
</Text>
}
onChange={(newValue) => {
setValue(newValue);
}}
helpText="The source sends data to the client."
value={value}
>
<VisualPickerRadio id={useUID()} value='1' labelText="my first site (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
My first site
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityAvailable">
Enabled
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
<Avatar name="site user3" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='2' labelText="test site (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
Test site
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityOffline">
Offline
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='3' labelText="ACME (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
ACME
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityAvailable">
Enabled
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
<Avatar name="site user3" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
</VisualPickerRadioGroup>
);
}
render(
<VisualPickerExample/>
)

Use the horizontal Visual Picker when more complex visuals will help users compare information. Avoid using horizontal if there are more than 3 options.

Component preview theme
const VisualPickerExample = () => {
const [value, setValue] = React.useState('')
return (
<VisualPickerRadioGroup
orientation="horizontal"
name={useUID()}
id={useUID()}
legend="Select a plan"
onChange={(newValue) => {
setValue(newValue);
}}
helpText="The new plan will take effect at the start of the upcoming cycle."
value={value}
>
<VisualPickerRadio id={useUID()} value='1' labelText="30 US dollars per user per month">
<Box display="flex" flexDirection="column" rowGap="space30">
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Basic plan
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30" color="colorTextWeak">
Most basic option
</Text>
</Box>
<Box
display="flex"
flexDirection="column"
alignItems="center"
rowGap="space40"
paddingY="space50"
>
<Text as="div" fontSize="fontSize60" fontWeight="fontWeightSemibold">
$30
</Text>
<Text as="div" color="colorTextWeak">
USD/user/month *
</Text>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='2' labelText="150 US dollars per user per month">
<Box display="flex" flexDirection="column" rowGap="space30">
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Business plan
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30" color="colorTextWeak">
Best for businesses
</Text>
</Box>
<Box
display="flex"
flexDirection="column"
alignItems="center"
rowGap="space40"
paddingY="space50"
>
<Text as="div" fontSize="fontSize60" fontWeight="fontWeightSemibold">
$150
</Text>
<Text as="div" color="colorTextWeak">
USD/user/month *
</Text>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='3' labelText="300 US dollars per user per month">
<Box display="flex" flexDirection="column" rowGap="space30">
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Pro plan
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30" color="colorTextWeak">
For large businesses
</Text>
</Box>
<Box
display="flex"
flexDirection="column"
alignItems="center"
rowGap="space40"
paddingY="space50"
>
<Text as="div" fontSize="fontSize60" fontWeight="fontWeightSemibold">
$300
</Text>
<Text as="div" color="colorTextWeak">
USD/user/month *
</Text>
</Box>
</Box>
</VisualPickerRadio>
</VisualPickerRadioGroup>
);
}
render(
<VisualPickerExample/>
)

Use a Visual Picker Checkbox when a user can select multiple options.

Vertical is the default orientation for Visual Picker.

Component preview theme
const VisualPickerExample = () => {
const [checked1, setChecked1] = React.useState(false)
const [checked2, setChecked2] = React.useState(false)
const [checked3, setChecked3] = React.useState(false)
const [checked4, setChecked4] = React.useState(false)
const handleChange1 = (event) => setChecked1(event.target.checked)
const handleChange2 = (event) => setChecked2(event.target.checked)
const handleChange3 = (event) => setChecked3(event.target.checked)
const handleChange4 = (event) => setChecked4(event.target.checked)
return (
<VisualPickerCheckboxGroup
name={useUID()}
id={useUID()}
legend={
<Text as="span" color="currentColor">
Select service
</Text>
}
helpText="The message will be sent to all recipients for each selected service."
>
<VisualPickerCheckbox id={useUID()} labelText="sms" checked={checked1} onChange={handleChange1}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={SMSIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
SMS
</Text>
<Text as="div" color="colorTextWeak">
4,770 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="sms recipient1" icon={UserIcon} />
<Avatar name="sms recipient2" icon={UserIcon} />
<Avatar name="sms recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold">+4,767</Text>
</Box>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="voice" checked={checked2} onChange={handleChange2}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={VoiceCapableIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
Voice
</Text>
<Text as="div" color="colorTextWeak">
593 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="voice recipient1" icon={UserIcon} />
<Avatar name="voice recipient2" icon={UserIcon} />
<Avatar name="voice recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold">+596</Text>
</Box>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="whatsapp" checked={checked3} onChange={handleChange3}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={ProductVideoIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
Video
</Text>
<Text as="div" color="colorTextWeak">
86 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="video recipient1" icon={UserIcon} />
<Avatar name="video recipient2" icon={UserIcon} />
<Avatar name="video recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold">+83</Text>
</Box>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="email" checked={checked4} onChange={handleChange4}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={EmailIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
Email
</Text>
<Text as="div" color="colorTextWeak">
6,081 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="email recipient1" icon={UserIcon} />
<Avatar name="email recipient2" icon={UserIcon} />
<Avatar name="email recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold">+6,078</Text>
</Box>
</Box>
</VisualPickerCheckbox>
</VisualPickerCheckboxGroup>
);
}
render(
<VisualPickerExample/>
)

Use the horizontal Visual Picker when more complex visuals will help users compare information. Avoid using horizontal if there are more than 3-4 options.

Component preview theme
const VisualPickerExample = () => {
const [checked1, setChecked1] = React.useState(false)
const [checked2, setChecked2] = React.useState(false)
const [checked3, setChecked3] = React.useState(false)
const handleChange1 = (event) => setChecked1(event.target.checked)
const handleChange2 = (event) => setChecked2(event.target.checked)
const handleChange3 = (event) => setChecked3(event.target.checked)
return (
<VisualPickerCheckboxGroup
orientation="horizontal"
name={useUID()}
id={useUID()}
legend="Select a channel to test"
helpText="The test message will only be sent to test recipients."
>
<VisualPickerCheckbox id={useUID()} labelText="sms" checked={checked1} onChange={handleChange1}>
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
SMS
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30" color="colorTextWeak">
30 test recipients
</Text>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="whatsapp" checked={checked2} onChange={handleChange2}>
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Whatsapp
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30" color="colorTextWeak">
15 test recipients
</Text>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="email" checked={checked3} onChange={handleChange3}>
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Email
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30" color="colorTextWeak">
7 test recipients
</Text>
</Box>
</VisualPickerCheckbox>
</VisualPickerCheckboxGroup>
);
}
render(
<VisualPickerExample/>
)

Internationalizing Visual Picker is the same for both Radio and Checkbox. To internationalize, provide translated text as children. The only exception to this is the required dot in the legend of a required Visual Picker. To change the required dot's text, use the i18nRequiredLabel prop. You can hover over the required dot to see the translated string.

Component preview theme
const VisualPickerExample = () => {
const [checked1, setChecked1] = React.useState(false)
const [checked2, setChecked2] = React.useState(false)
const [checked3, setChecked3] = React.useState(false)
const [checked4, setChecked4] = React.useState(false)
const [checked5, setChecked5] = React.useState(false)
const handleChange1 = (event) => setChecked1(event.target.checked)
const handleChange2 = (event) => setChecked2(event.target.checked)
const handleChange3 = (event) => setChecked3(event.target.checked)
const handleChange4 = (event) => setChecked4(event.target.checked)
const handleChange5 = (event) => setChecked5(event.target.checked)
return (
<VisualPickerCheckboxGroup
name={useUID()}
id={useUID()}
legend={
<Text as="span" color="currentColor">
Días de la semana
</Text>
}
i18nRequiredLabel="(requirido)"
required
>
<VisualPickerCheckbox id={useUID()} labelText="lunes" checked={checked1} onChange={handleChange1}>
Lunes
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="martes" checked={checked2} onChange={handleChange2}>
Martes
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="miércoles" checked={checked3} onChange={handleChange3}>
Miércoles
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="jueves" checked={checked4} onChange={handleChange4}>
Jueves
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="viernes" checked={checked5} onChange={handleChange5}>
Viernes
</VisualPickerCheckbox>
</VisualPickerCheckboxGroup>
);
}
render(
<VisualPickerExample/>
)

Use a Visual Picker with a pre-checked value only if:

  • The default value would not cause harm if accidentally used.
  • You don’t mind collecting biased data. Defaulting to a value biases or alters the experience so that your data may be skewed.
  • The user doesn't need to make an explicit choice for safety, security, or legal reasons.

If you do apply a pre-checked value, make the checked option the first option.

Component preview theme
const VisualPickerExample = () => {
const [value, setValue] = React.useState('1')
return (
<VisualPickerRadioGroup
name={useUID()}
id={useUID()}
legend={
<Text as="span" color="currentColor">
Select a data source
</Text>
}
onChange={(newValue) => {
setValue(newValue);
}}
helpText="The connected source you select will send data to the client."
value={value}
>
<VisualPickerRadio id={useUID()} value='1' labelText="my first site (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
My first site
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityAvailable">
Enabled
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
<Avatar name="site user3" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='2' labelText="test site (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
Test site
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityOffline">
Offline
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='3' labelText="ACME (website)">
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={CodeIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold">
ACME
</Text>
<Text as="div" color="colorTextWeak">
Website
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space50">
<StatusBadge as="span" variant="ConnectivityAvailable">
Enabled
</StatusBadge>
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="site user1" icon={CommunityIcon} />
<Avatar name="site user2" icon={CommunityIcon} />
<Avatar name="site user3" icon={CommunityIcon} />
</AvatarGroup>
</Box>
</Box>
</VisualPickerRadio>
</VisualPickerRadioGroup>
);
}
render(
<VisualPickerExample/>
)

Use a Disabled Visual Picker to show users that they can’t interact with it. When disabling an item, set all text colors to color-text-weak and gray out any other content.

Component preview theme
const VisualPickerExample = () => {
const [checked1, setChecked1] = React.useState(false)
const [checked2, setChecked2] = React.useState(false)
const [checked3, setChecked3] = React.useState(false)
const [checked4, setChecked4] = React.useState(false)
const handleChange1 = (event) => setChecked1(event.target.checked)
const handleChange2 = (event) => setChecked2(event.target.checked)
const handleChange3 = (event) => setChecked3(event.target.checked)
const handleChange4 = (event) => setChecked4(event.target.checked)
return (
<VisualPickerCheckboxGroup
name={useUID()}
id={useUID()}
legend={
<Text as="span" color="currentColor">
Select one or more service for your scheduled message
</Text>
}
helpText="The message will be delivered to all selected recipients."
disabled
>
<VisualPickerCheckbox id={useUID()} labelText="sms" checked={checked1} onChange={handleChange1}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={SMSIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold" color="colorTextWeak">
SMS
</Text>
<Text as="div" color="colorTextWeak">
4,770 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="sms recipient1" icon={UserIcon} />
<Avatar name="sms recipient2" icon={UserIcon} />
<Avatar name="sms recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold" color="colorTextWeak">+4,767</Text>
</Box>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="voice" checked={checked2} onChange={handleChange2}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={VoiceCapableIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold" color="colorTextWeak">
Voice
</Text>
<Text as="div" color="colorTextWeak">
593 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="voice recipient1" icon={UserIcon} />
<Avatar name="voice recipient2" icon={UserIcon} />
<Avatar name="voice recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold" color="colorTextWeak">+596</Text>
</Box>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="whatsapp" checked={checked3} onChange={handleChange3}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={ProductVideoIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold" color="colorTextWeak">
Video
</Text>
<Text as="div" color="colorTextWeak">
86 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="video recipient1" icon={UserIcon} />
<Avatar name="video recipient2" icon={UserIcon} />
<Avatar name="video recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold" color="colorTextWeak">+83</Text>
</Box>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="email" checked={checked4} onChange={handleChange4}>
<Box display="flex" justifyContent="space-between" alignItems="center">
<MediaObject verticalAlign="center">
<MediaFigure spacing="space50">
<Avatar variant="entity" icon={EmailIcon} size="sizeIcon90" name="code" color="decorative20" />
</MediaFigure>
<MediaBody>
<Text as="div" fontWeight="fontWeightSemibold" color="colorTextWeak">
Email
</Text>
<Text as="div" color="colorTextWeak">
6,081 recipients
</Text>
</MediaBody>
</MediaObject>
<Box display="flex" columnGap="space30">
<AvatarGroup size="sizeIcon20" variant="user">
<Avatar name="email recipient1" icon={UserIcon} />
<Avatar name="email recipient2" icon={UserIcon} />
<Avatar name="email recipient3" icon={UserIcon} />
</AvatarGroup>
<Text fontWeight="fontWeightBold" color="colorTextWeak">+6,078</Text>
</Box>
</Box>
</VisualPickerCheckbox>
</VisualPickerCheckboxGroup>
);
}
render(
<VisualPickerExample/>
)
Component preview theme
const VisualPickerExample = () => {
const [value, setValue] = React.useState('1')
return (
<VisualPickerRadioGroup
orientation="horizontal"
name={useUID()}
id={useUID()}
legend="Select a plan"
onChange={(newValue) => {
setValue(newValue);
}}
helpText="The new plan will take effect at the start of the upcoming cycle."
value={value}
>
<VisualPickerRadio id={useUID()} value='1' labelText="30 US dollars per user per month">
<Box display="flex" flexDirection="column" rowGap="space30">
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Basic plan
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30">
This is the most basic option
</Text>
</Box>
<Box
display="flex"
flexDirection="column"
alignItems="center"
rowGap="space40"
paddingY="space50"
>
<Text as="div" fontSize="fontSize60" fontWeight="fontWeightSemibold">
$30
</Text>
<Text as="div" color="colorTextWeak">
USD/user/month *
</Text>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='2' labelText="150 US dollars per user per month">
<Box display="flex" flexDirection="column" rowGap="space30">
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Business plan
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30">
This is best option for businesses
</Text>
</Box>
<Box
display="flex"
flexDirection="column"
alignItems="center"
rowGap="space40"
paddingY="space50"
>
<Text as="div" fontSize="fontSize60" fontWeight="fontWeightSemibold">
$150
</Text>
<Text as="div" color="colorTextWeak">
USD/user/month *
</Text>
</Box>
</Box>
</VisualPickerRadio>
<VisualPickerRadio id={useUID()} value='3' labelText="300 US dollars per user per month" hasError>
<Box display="flex" flexDirection="column" rowGap="space30">
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Pro plan
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30">
This is best option for large businesses
</Text>
</Box>
<Box
display="flex"
flexDirection="column"
alignItems="center"
rowGap="space40"
paddingY="space50"
>
<Text as="div" fontSize="fontSize60" fontWeight="fontWeightSemibold">
$300
</Text>
<Text as="div" color="colorTextWeak">
USD/user/month *
</Text>
</Box>
</Box>
</VisualPickerRadio>
</VisualPickerRadioGroup>
);
}
render(
<VisualPickerExample/>
)

If the selected items don't pass the group validation requirements, use the errorText prop to show an inline error Help Text message below the group.

For simple required field errors, consider the following formats depending on the use case:

SituationRecommended phrasing
Options are not nouns.Select an option.
Options are nouns.Select a [noun in group label].

For additional guidance on how to compose error messages, refer to the error state pattern.

Component preview theme
const VisualPickerExample = () => {
const [checked1, setChecked1] = React.useState(false)
const [checked2, setChecked2] = React.useState(false)
const [checked3, setChecked3] = React.useState(false)
const handleChange1 = (event) => setChecked1(event.target.checked)
const handleChange2 = (event) => setChecked2(event.target.checked)
const handleChange3 = (event) => setChecked3(event.target.checked)
return (
<VisualPickerCheckboxGroup
orientation="horizontal"
name={useUID()}
id={useUID()}
legend="Select a channel to test"
helpText="The test message will only be sent to test recipients."
errorText="Select a channel."
>
<VisualPickerCheckbox id={useUID()} labelText="sms" checked={checked1} onChange={handleChange1}>
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
SMS
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30">
30 test recipients
</Text>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="whatsapp" checked={checked2} onChange={handleChange2}>
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Whatsapp
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30">
15 test recipients
</Text>
</Box>
</VisualPickerCheckbox>
<VisualPickerCheckbox id={useUID()} labelText="email" checked={checked3} onChange={handleChange3}>
<Box display="flex" flexDirection="column" rowGap="space30">
<Text as="span" fontWeight="fontWeightSemibold" fontSize="fontSize60">
Email
</Text>
<Text as="span" fontWeight="fontWeightNormal" fontSize="fontSize30">
7 test recipients
</Text>
</Box>
</VisualPickerCheckbox>
</VisualPickerCheckboxGroup>
);
}
render(
<VisualPickerExample/>
)

Refer to the Radio and Checkbox composition notes for general guidance. Due to the visual nature of the component, avoid including more than two sentences in description text.

Visual Picker Radios and Checkboxes are sized based on their contents. In order to control and standardize the size of all pickers within a group, pass equally sized children to each picker.