File tree 2 files changed +30
-2
lines changed
docs/content/3.components
2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,34 @@ props:
99
99
---
100
100
::
101
101
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
+
102
130
### Legend
103
131
104
132
Use the ` legend ` prop to set the legend of the RadioGroup.
Original file line number Diff line number Diff line change @@ -27,8 +27,8 @@ export default (options: Required<ModuleOptions>) => ({
27
27
variant : {
28
28
radio : { } ,
29
29
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'
32
32
}
33
33
} ,
34
34
orientation : {
You can’t perform that action at this time.
0 commit comments