import React, { type FC } from 'react'; import Box from '@mui/material/Box'; import Typography from '@mui/material/Typography'; interface ListTextWrapperProps { index?: number; isLargeStyle?: boolean; } const ListTextWrapper: FC = ({ index, isLargeStyle, children }) => { if (index === 0) { if (isLargeStyle) { return ( {children} ); } else { return {children}; } } else { return {children}; } }; export default ListTextWrapper;