<DropdownItem label="Michael Murphy" />
The helpText
prop is used to add a description to the DropdownItem.
Growth team
<DropdownItem helpText="Growth team" label="Michael Murphy" />
The isHighlighted
prop is used to highlight the DropdownItem.
<DropdownItem isHighlighted {...otherProps} />
The isSelected
prop is used to display the DropdownItem as selected.
<DropdownItem isSelected {...otherProps} />
Items can be added inside a DropdownItem with the prefix
and suffix
props.
<>
<DropdownItem
prefix={
<Avatar variant="square" size={24} src="/aurelien.webp" text="Aurelien" />
}
{...otherProps}
/>
<DropdownItem suffix={<span>24€</span>} {...otherProps} />
</>