Skip to content

Commit b259f2f

Browse files
committedFeb 1, 2025
feat(RadioGroup): add indicator on card variant
1 parent cbae0ef commit b259f2f

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed
 

‎docs/content/3.components/radio-group.md

+28
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,34 @@ props:
9999
---
100100
::
101101

102+
### Variant
103+
104+
Use the `variant` prop to change the variant of the RadioGroup.
105+
106+
::component-code
107+
---
108+
prettier: true
109+
ignore:
110+
- defaultValue
111+
- items
112+
external:
113+
- items
114+
props:
115+
variant: 'card'
116+
defaultValue: 'pro'
117+
items:
118+
- label: 'Pro'
119+
value: 'pro'
120+
description: 'Tailored for indie hackers, freelancers and solo founders.'
121+
- label: 'Startup'
122+
value: 'startup'
123+
description: 'Best suited for small teams, startups and agencies.'
124+
- label: 'Enterprise'
125+
value: 'enterprise'
126+
description: 'Ideal for larger teams and organizations.'
127+
---
128+
::
129+
102130
### Legend
103131

104132
Use the `legend` prop to set the legend of the RadioGroup.

‎src/theme/radio-group.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export default (options: Required<ModuleOptions>) => ({
2727
variant: {
2828
radio: {},
2929
card: {
30-
base: 'hidden',
31-
item: 'border-2 border-[var(--ui-border-muted)] rounded-lg'
30+
base: 'ml-4',
31+
item: 'flex-row-reverse items-center justify-between border-2 border-[var(--ui-border-muted)] rounded-lg'
3232
}
3333
},
3434
orientation: {

0 commit comments

Comments
 (0)