@aristobyte-ui/radio 2.15.2 → 2.16.2

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
@@ -1,6 +1,8 @@
1
1
  # @aristobyte-ui/radio
2
2
 
3
- <p align="center">
3
+ <p align="center">
4
+ <img src="https://img.shields.io/npm/v/%40aristobyte-ui%2Fradio?style=for-the-badge" alt="NPM version" />
5
+ <img src="https://img.shields.io/npm/dm/%40aristobyte-ui%2Fradio?style=for-the-badge" alt="NPM downloads" />
4
6
  <img src="https://img.shields.io/badge/TypeScript-5.8-blue?style=for-the-badge&logo=typescript&logoColor=white" alt="TypeScript" />
5
7
  <img src="https://img.shields.io/badge/Build-Turbo-green?style=for-the-badge&logo=turbo&logoColor=white" alt="TurboRepo" />
6
8
  <img src="https://img.shields.io/badge/Lint-Strict-red?style=for-the-badge&logo=eslint&logoColor=white" alt="ESLint" />
@@ -29,7 +31,7 @@ pnpm add -D @aristobyte-ui/radio
29
31
  ## 🛠 Usage
30
32
 
31
33
  ```tsx
32
- import { Radio, RadioGroup } from "@aristobyte-ui/radio";
34
+ import { Radio, RadioGroup } from '@aristobyte-ui/radio';
33
35
 
34
36
  <RadioGroup
35
37
  name="options"
@@ -57,13 +59,7 @@ import { Radio, RadioGroup } from "@aristobyte-ui/radio";
57
59
  ## 🔧 Example in a Package
58
60
 
59
61
  ```tsx
60
- <Radio
61
- value="radio1"
62
- size="lg"
63
- variant="success"
64
- appearance="glowing"
65
- alignLabel="top"
66
- >
62
+ <Radio value="radio1" size="lg" variant="success" appearance="glowing" alignLabel="top">
67
63
  Radio Option
68
64
  </Radio>
69
65
  ```