generated from layer5io/layer5-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
18 changed files
with
72 additions
and
6 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
packages/components/src/base/CircularProgress/CircularProgress.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
CircularProgress as MuiCircularProgress, | ||
CircularProgressProps as MuiCircularProgressProps | ||
} from '@mui/material'; | ||
|
||
export function CircularProgress(props: MuiCircularProgressProps): JSX.Element { | ||
return <MuiCircularProgress {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { CircularProgress } from './CircularProgress'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { List as MuiList, ListProps as MuiListProps } from '@mui/material'; | ||
|
||
export function List(props: MuiListProps): JSX.Element { | ||
return <MuiList {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
export { List } from './list'; | ||
export { List } from './List'; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { ListItem as MuiListItem, ListItemProps as MuiListItemProps } from '@mui/material'; | ||
|
||
export function ListItem(props: MuiListItemProps): JSX.Element { | ||
return <MuiListItem {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ListItem } from './ListItem'; |
8 changes: 8 additions & 0 deletions
8
packages/components/src/base/ListItemAvatar/ListItemAvatar.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
ListItemAvatar as MuiListItemAvatar, | ||
ListItemAvatarProps as MuiListItemAvatarProps | ||
} from '@mui/material'; | ||
|
||
export function ListItemAvatar(props: MuiListItemAvatarProps): JSX.Element { | ||
return <MuiListItemAvatar {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ListItemAvatar } from './ListItemAvatar'; |
8 changes: 8 additions & 0 deletions
8
packages/components/src/base/ListItemButton/ListItemButton.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
ListItemButton as MuiListItemButton, | ||
ListItemButtonProps as MuiListItemButtonProps | ||
} from '@mui/material'; | ||
|
||
export function ListItemButton(props: MuiListItemButtonProps): JSX.Element { | ||
return <MuiListItemButton {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ListItemButton } from './ListItemButton'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
ListItemIcon as MuiListItemIcon, | ||
ListItemIconProps as MuiListItemIconProps | ||
} from '@mui/material'; | ||
|
||
export function ListItemIcon(props: MuiListItemIconProps): JSX.Element { | ||
return <MuiListItemIcon {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ListItemIcon } from './ListItemIcon'; |
8 changes: 8 additions & 0 deletions
8
packages/components/src/base/ListItemSecondaryAction/ListItemSecondaryAction.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
ListItemSecondaryAction as MuiListItemSecondaryAction, | ||
ListItemSecondaryActionProps as MuiListItemSecondaryActionProps | ||
} from '@mui/material'; | ||
|
||
export function ListItemSecondaryAction(props: MuiListItemSecondaryActionProps): JSX.Element { | ||
return <MuiListItemSecondaryAction {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ListItemSecondaryAction } from './ListItemSecondaryAction'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { | ||
ListSubheader as MuiListSubheader, | ||
ListSubheaderProps as MuiListSubheaderProps | ||
} from '@mui/material'; | ||
|
||
export function ListSubheader(props: MuiListSubheaderProps): JSX.Element { | ||
return <MuiListSubheader {...props} />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export { ListSubheader } from './ListSubheader'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters