import React, { FC } from 'react' import { List as MuiList, ListProps as MuiListProps, SxProps } from '@mui/material' interface ListProps extends MuiListProps { sx?: SxProps, className?: string, children: React.ReactNode } export const List: FC = (props) => { // == Props ================================ const { children, className = '' } = props // == Hooks ================================ // == Functions ============================ // == Actions ============================== // == Template ============================= return ( {children} ) }