Skip to content

Commit 9bf7e42

Browse files
feat(components): add stack
1 parent 106fb03 commit 9bf7e42

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
@@ -31,6 +31,7 @@ export * from './skeleton';
3131
export * from './slider';
3232
export * from './spacer';
3333
export * from './spinner';
34+
export * from './stack';
3435
export * from './stat';
3536
export * from './switch';
3637
export * from './tabs';

lib/components/stack/index.tsx

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

lib/components/stack/wrapper.tsx

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

0 commit comments

Comments
 (0)