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 106fb03 commit 9bf7e42Copy full SHA for 9bf7e42
lib/components/index.ts
@@ -31,6 +31,7 @@ export * from './skeleton';
31
export * from './slider';
32
export * from './spacer';
33
export * from './spinner';
34
+export * from './stack';
35
export * from './stat';
36
export * from './switch';
37
export * from './tabs';
lib/components/stack/index.tsx
@@ -0,0 +1,2 @@
1
+export type { StackProps } from './wrapper';
2
+export { HStack, VStack } from './wrapper';
lib/components/stack/wrapper.tsx
+export type { StackProps } from '@chakra-ui/react';
+export { HStack, VStack } from '@chakra-ui/react';
0 commit comments