import { useTheme } from '@mui/joy'; // Types import type { FC, ReactNode } from 'react'; // Custom Types export interface InlineCodeProps { children?: ReactNode; } const InlineCode: FC = (props) => { // Props const { children } = props; // Hooks const { palette } = useTheme(); return ( {children} ); }; export default InlineCode;