diff --git a/packages/components/src/base/CircularProgress/CircularProgress.tsx b/packages/components/src/base/CircularProgress/CircularProgress.tsx
new file mode 100644
index 00000000..38999177
--- /dev/null
+++ b/packages/components/src/base/CircularProgress/CircularProgress.tsx
@@ -0,0 +1,8 @@
+import {
+ CircularProgress as MuiCircularProgress,
+ CircularProgressProps as MuiCircularProgressProps
+} from '@mui/material';
+
+export function CircularProgress(props: MuiCircularProgressProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/CircularProgress/index.tsx b/packages/components/src/base/CircularProgress/index.tsx
new file mode 100644
index 00000000..e7c869e5
--- /dev/null
+++ b/packages/components/src/base/CircularProgress/index.tsx
@@ -0,0 +1 @@
+export { CircularProgress } from './CircularProgress';
diff --git a/packages/components/src/base/List/List.tsx b/packages/components/src/base/List/List.tsx
new file mode 100644
index 00000000..326c4807
--- /dev/null
+++ b/packages/components/src/base/List/List.tsx
@@ -0,0 +1,5 @@
+import { List as MuiList, ListProps as MuiListProps } from '@mui/material';
+
+export function List(props: MuiListProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/List/index.tsx b/packages/components/src/base/List/index.tsx
index 53821c4b..bfd3a10e 100644
--- a/packages/components/src/base/List/index.tsx
+++ b/packages/components/src/base/List/index.tsx
@@ -1 +1 @@
-export { List } from './list';
+export { List } from './List';
diff --git a/packages/components/src/base/List/list.tsx b/packages/components/src/base/List/list.tsx
deleted file mode 100644
index e2a5a3d9..00000000
--- a/packages/components/src/base/List/list.tsx
+++ /dev/null
@@ -1,5 +0,0 @@
-import { List as MuiList, type ListProps } from '@mui/material';
-
-export function List(props: ListProps): JSX.Element {
- return ;
-}
diff --git a/packages/components/src/base/ListItem/ListItem.tsx b/packages/components/src/base/ListItem/ListItem.tsx
new file mode 100644
index 00000000..72930041
--- /dev/null
+++ b/packages/components/src/base/ListItem/ListItem.tsx
@@ -0,0 +1,5 @@
+import { ListItem as MuiListItem, ListItemProps as MuiListItemProps } from '@mui/material';
+
+export function ListItem(props: MuiListItemProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/ListItem/index.tsx b/packages/components/src/base/ListItem/index.tsx
new file mode 100644
index 00000000..b5eb55cd
--- /dev/null
+++ b/packages/components/src/base/ListItem/index.tsx
@@ -0,0 +1 @@
+export { ListItem } from './ListItem';
diff --git a/packages/components/src/base/ListItemAvatar/ListItemAvatar.tsx b/packages/components/src/base/ListItemAvatar/ListItemAvatar.tsx
new file mode 100644
index 00000000..14285ada
--- /dev/null
+++ b/packages/components/src/base/ListItemAvatar/ListItemAvatar.tsx
@@ -0,0 +1,8 @@
+import {
+ ListItemAvatar as MuiListItemAvatar,
+ ListItemAvatarProps as MuiListItemAvatarProps
+} from '@mui/material';
+
+export function ListItemAvatar(props: MuiListItemAvatarProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/ListItemAvatar/index.tsx b/packages/components/src/base/ListItemAvatar/index.tsx
new file mode 100644
index 00000000..2b1cadb3
--- /dev/null
+++ b/packages/components/src/base/ListItemAvatar/index.tsx
@@ -0,0 +1 @@
+export { ListItemAvatar } from './ListItemAvatar';
diff --git a/packages/components/src/base/ListItemButton/ListItemButton.tsx b/packages/components/src/base/ListItemButton/ListItemButton.tsx
new file mode 100644
index 00000000..524ca4b0
--- /dev/null
+++ b/packages/components/src/base/ListItemButton/ListItemButton.tsx
@@ -0,0 +1,8 @@
+import {
+ ListItemButton as MuiListItemButton,
+ ListItemButtonProps as MuiListItemButtonProps
+} from '@mui/material';
+
+export function ListItemButton(props: MuiListItemButtonProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/ListItemButton/index.tsx b/packages/components/src/base/ListItemButton/index.tsx
new file mode 100644
index 00000000..d0ee45d6
--- /dev/null
+++ b/packages/components/src/base/ListItemButton/index.tsx
@@ -0,0 +1 @@
+export { ListItemButton } from './ListItemButton';
diff --git a/packages/components/src/base/ListItemIcon/ListItemIcon.tsx b/packages/components/src/base/ListItemIcon/ListItemIcon.tsx
new file mode 100644
index 00000000..6ded1430
--- /dev/null
+++ b/packages/components/src/base/ListItemIcon/ListItemIcon.tsx
@@ -0,0 +1,8 @@
+import {
+ ListItemIcon as MuiListItemIcon,
+ ListItemIconProps as MuiListItemIconProps
+} from '@mui/material';
+
+export function ListItemIcon(props: MuiListItemIconProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/ListItemIcon/index.tsx b/packages/components/src/base/ListItemIcon/index.tsx
new file mode 100644
index 00000000..598fce2c
--- /dev/null
+++ b/packages/components/src/base/ListItemIcon/index.tsx
@@ -0,0 +1 @@
+export { ListItemIcon } from './ListItemIcon';
diff --git a/packages/components/src/base/ListItemSecondaryAction/ListItemSecondaryAction.tsx b/packages/components/src/base/ListItemSecondaryAction/ListItemSecondaryAction.tsx
new file mode 100644
index 00000000..564b5766
--- /dev/null
+++ b/packages/components/src/base/ListItemSecondaryAction/ListItemSecondaryAction.tsx
@@ -0,0 +1,8 @@
+import {
+ ListItemSecondaryAction as MuiListItemSecondaryAction,
+ ListItemSecondaryActionProps as MuiListItemSecondaryActionProps
+} from '@mui/material';
+
+export function ListItemSecondaryAction(props: MuiListItemSecondaryActionProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/ListItemSecondaryAction/index.tsx b/packages/components/src/base/ListItemSecondaryAction/index.tsx
new file mode 100644
index 00000000..f74bed69
--- /dev/null
+++ b/packages/components/src/base/ListItemSecondaryAction/index.tsx
@@ -0,0 +1 @@
+export { ListItemSecondaryAction } from './ListItemSecondaryAction';
diff --git a/packages/components/src/base/ListSubheader/ListSubheader.tsx b/packages/components/src/base/ListSubheader/ListSubheader.tsx
new file mode 100644
index 00000000..014e86db
--- /dev/null
+++ b/packages/components/src/base/ListSubheader/ListSubheader.tsx
@@ -0,0 +1,8 @@
+import {
+ ListSubheader as MuiListSubheader,
+ ListSubheaderProps as MuiListSubheaderProps
+} from '@mui/material';
+
+export function ListSubheader(props: MuiListSubheaderProps): JSX.Element {
+ return ;
+}
diff --git a/packages/components/src/base/ListSubheader/index.tsx b/packages/components/src/base/ListSubheader/index.tsx
new file mode 100644
index 00000000..0cb6f1b1
--- /dev/null
+++ b/packages/components/src/base/ListSubheader/index.tsx
@@ -0,0 +1 @@
+export { ListSubheader } from './ListSubheader';
diff --git a/packages/components/src/index.tsx b/packages/components/src/index.tsx
index 87110299..b1e155f6 100644
--- a/packages/components/src/index.tsx
+++ b/packages/components/src/index.tsx
@@ -30,6 +30,12 @@ export * from './base/IconButton';
export * from './base/Input';
export * from './base/InputLabel';
export * from './base/List';
+export * from './base/ListItem';
+export * from './base/ListItemAvatar';
+export * from './base/ListItemButton';
+export * from './base/ListItemIcon';
+export * from './base/ListItemSecondaryAction';
+export * from './base/ListSubheader';
export * from './base/Menu';
export * from './base/MenuItem';
export * from './base/MenuList';