Browse Source

remove uppercased version files

Abhinav 3 years ago
parent
commit
2e246bf209

+ 0 - 9
src/components/DialogBox/MessageText.tsx

@@ -1,9 +0,0 @@
-import { DialogContentText, styled } from '@mui/material';
-
-const MessageText = styled(DialogContentText)(({ theme }) => ({
-    paddingBottom: theme.spacing(2),
-    fontSize: '20px',
-    lineHeight: '24.2px',
-}));
-
-export default MessageText;

+ 0 - 26
src/components/DialogBox/TitleWithCloseButton.tsx

@@ -1,26 +0,0 @@
-import React from 'react';
-import { DialogTitle, IconButton, Typography } from '@mui/material';
-import CloseIcon from '@mui/icons-material/Close';
-import { SpaceBetweenFlex } from 'components/Container';
-
-const DialogTitleWithCloseButton = (props) => {
-    const { children, onClose, ...other } = props;
-
-    return (
-        <DialogTitle {...other}>
-            <SpaceBetweenFlex>
-                <Typography variant="title">{children}</Typography>
-                {onClose && (
-                    <IconButton
-                        aria-label="close"
-                        onClick={onClose}
-                        sx={{ float: 'right' }}>
-                        <CloseIcon />
-                    </IconButton>
-                )}
-            </SpaceBetweenFlex>
-        </DialogTitle>
-    );
-};
-
-export default DialogTitleWithCloseButton;