We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17f8c07 commit c47ce3fCopy full SHA for c47ce3f
lib/components/index.ts
@@ -24,6 +24,7 @@ export * from './number-input';
24
export * from './popover';
25
export * from './portal';
26
export * from './progress';
27
+export * from './radio';
28
export * from './select';
29
export * from './skeleton';
30
export * from './slider';
lib/components/radio/index.tsx
@@ -0,0 +1,2 @@
1
+export type { RadioGroupProps, RadioProps } from './wrapper';
2
+export { Radio, RadioGroup } from './wrapper';
lib/components/radio/wrapper.tsx
+export type { RadioGroupProps, RadioProps } from '@chakra-ui/react';
+export { Radio, RadioGroup } from '@chakra-ui/react';
0 commit comments