Skip to content

Commit c47ce3f

Browse files
feat(components): add radio
1 parent 17f8c07 commit c47ce3f

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

lib/components/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ export * from './number-input';
2424
export * from './popover';
2525
export * from './portal';
2626
export * from './progress';
27+
export * from './radio';
2728
export * from './select';
2829
export * from './skeleton';
2930
export * from './slider';

lib/components/radio/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export type { RadioGroupProps, RadioProps } from './wrapper';
2+
export { Radio, RadioGroup } from './wrapper';

lib/components/radio/wrapper.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export type { RadioGroupProps, RadioProps } from '@chakra-ui/react';
2+
export { Radio, RadioGroup } from '@chakra-ui/react';

0 commit comments

Comments
 (0)