@bloomkit/react 0.2.7 → 0.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -162,6 +162,18 @@ import { Checkbox } from "@bloomkit/react";
162
162
  <Checkbox />
163
163
  ```
164
164
 
165
+ ### Radio Group
166
+
167
+ ```tsx
168
+ import { RadioGroup, RadioGroupItem } from "@bloomkit/react";
169
+
170
+ <RadioGroup defaultValue="calm">
171
+ <RadioGroupItem value="calm" label="Calm" />
172
+ <RadioGroupItem value="focused" label="Focused" />
173
+ <RadioGroupItem value="energized" label="Energized" />
174
+ </RadioGroup>
175
+ ```
176
+
165
177
  ### Select
166
178
 
167
179
  ```tsx