I want to create a row of chips similar to the image below but I keep getting an extra space at the right of the icon as if the chip is leaving extra room for text.
This is the only code so far:
<com.google.android.material.chip.ChipGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<com.google.android.material.chip.Chip
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:chipIcon="@drawable/ic_baseline_signal_wifi_4_bar_24"
app:chipIconSize="40dp"/>
</com.google.android.material.chip.ChipGroup>