Chip Group

The RhChipGroup simplifies the process of creating selectable chips as a group and offers greater flexibility in customizing their selection behavior.

Usage

Once installed, you can import the RhChipGroup component into your React application:

copy
import {RhChipGroup} from "@rhythm-ui/react"

Then, you can use the RhChipGroup component in your JSX code:

copy
<div className="p-4">
	<RhChipGroup onSelectionChange={(value) => console.log("selection:", value)}>
		<RhChip value="Rhythm" />
		<RhChip value="Library" />
		<RhChip value="Wonder" />
	</RhChipGroup>
</div>

Chip Group Pros

mandatorybooleanMandatory selection is needed, boolean value
childrenReact.ReactElement[]JSX element
multiplebooleanSelect multiple chips
classNamestringClassName to be passed to the parent element
defaultSelectingnumber | number[]
onSelectionChange(selected: number[]) => voidReturn array of the index of icons selected
disableClickingbooleanfor disabling the item clickable property

Mandatory Select

The mandatory prop ensures that at least one option must be selected when component mounts.

copy
<div className="p-4">
	<RhChipGroup mandatory={true}>
		<RhChip value="Rhythm" />
		<RhChip value="Library" />
		<RhChip value="Wonder" />
	</RhChipGroup>
</div>

Select Multiple

The multiple prop enables the selection of multiple chips from the group of RhChip components

copy
<div className="p-4">
	<RhChipGroup
		multiple
		mandatory
		onSelectionChange={(value) => console.log("selection:", value)}
	>
		<RhChip value="Rhythm" />
		<RhChip value="Library" />
		<RhChip value="Wonder" />
	</RhChipGroup>
</div>

select default

the default for selecting the particular chip as per the defaultselecting value

copy
<div className="p-4">
	<RhChipGroup defaultselecting={[1, 2]}>
		<RhChip value="Rhythm" />
		<RhChip value="Library" />
		<RhChip value="Wonder" />
	</RhChipGroup>
</div>