# RemoteImageGroup A component to display a group of RemoteImage components in a stack. ## Import ```tsx import { RemoteImageGroup } from '@coinbase/cds-web/media/RemoteImageGroup' ``` ## Examples ### Basic Usage ```tsx live ``` ### Max Items ```tsx live ``` ### Different Shapes ```tsx live ``` ### Different Sizes Use the `size` prop to change the dimensions of the avatars in the group. ```tsx live function Component() { const [size, setSize] = React.useState('m'); const avatarSizes = ['s', 'm', 'l', 'xl', 'xxl', 'xxxl', 16, 24, 32]; const options = avatarSizes.map((s) => ({ value: s, label: String(s) })); return (