Skip to Content
Creation UI 15.0 is released 🎉
DocsComponents

renderTags

This an example of the default multiple selections rendering function. Based on that you can create your own renderTags function. For single selection rendering see renderSelection.

import { Autocomplete, Avatar, ClearButton, Flex, useAutocomplete } from '@creation-ui/react' import { useState } from 'react' import { renderOption } from './custom' import { Character } from './types' import users from './users.json' const renderTags = (selected: Character[] = []) => { const { handleRemoveSelected } = useAutocomplete() return selected?.map(option => { const onDelete = () => handleRemoveSelected(option as any) return ( <Flex key={option.id} items={'center'} gapX={2} className='size-fit border rounded-full p-1 text-xs' > <Avatar size={16} src={option.image} className={'size-fit object-cover'} /> <span className='font-medium'>{option.name}</span> <ClearButton onClick={onDelete} /> </Flex> ) }) } export const AutocompleteExampleCustomMultiselect = () => { const [value, setValue] = useState<Character[] | undefined | null>([]) const onChange = (value: Character[] | null) => { setValue(value) } return ( <Autocomplete<Character> renderOption={renderOption} renderTags={renderTags} label={'Autocomplete - custom'} clearable multiple filterSelectedOptions value={value as any} options={users} onChange={onChange as any} isOptionEqualToValue={(a, b) => a?.id === b?.id} getOptionLabel={({ name }: Character) => name} /> ) }
Last updated on