Skip to content

Commit 106fb03

Browse files
feat(components): add list
1 parent c47ce3f commit 106fb03

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
@@ -18,6 +18,7 @@ export * from './image';
1818
export * from './input';
1919
export * from './kbd';
2020
export * from './link';
21+
export * from './list';
2122
export * from './menu';
2223
export * from './modal';
2324
export * from './number-input';

lib/components/list/index.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export type { ListItemProps, ListProps } from './wrapper';
2+
export { List, ListIcon, ListItem, OrderedList, UnorderedList } from './wrapper';

lib/components/list/wrapper.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
export type { ListItemProps, ListProps } from '@chakra-ui/react';
2+
export { List, ListIcon, ListItem, OrderedList, UnorderedList } from '@chakra-ui/react';

0 commit comments

Comments
 (0)