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 fc3baf7 commit 52fd0f5Copy full SHA for 52fd0f5
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 './select';
28
export * from './skeleton';
29
export * from './slider';
30
export * from './spacer';
lib/components/select/index.tsx
@@ -0,0 +1,2 @@
1
+export type { SelectProps } from './wrapper';
2
+export { Select } from './wrapper';
lib/components/select/wrapper.tsx
+export type { SelectProps } from '@chakra-ui/react';
+export { Select } from '@chakra-ui/react';
0 commit comments