build ok,
This commit is contained in:
@@ -1,16 +1,12 @@
|
||||
import type { BoxProps } from '@mui/material/Box';
|
||||
import type { Theme, SxProps } from '@mui/material/styles';
|
||||
|
||||
import { hexToRgbChannel } from 'minimal-shared/utils';
|
||||
import { useCopyToClipboard } from 'minimal-shared/hooks';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import Stack from '@mui/material/Stack';
|
||||
import type { SxProps, Theme } from '@mui/material/styles';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import Typography from '@mui/material/Typography';
|
||||
|
||||
import { useCopyToClipboard } from 'minimal-shared/hooks';
|
||||
import { hexToRgbChannel } from 'minimal-shared/utils';
|
||||
import { toast } from 'src/components/snackbar';
|
||||
|
||||
import { ComponentLayout } from '../../layout';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
@@ -1,12 +1,10 @@
|
||||
import { useState } from 'react';
|
||||
|
||||
import Grid from '@mui/material/Grid';
|
||||
import Radio from '@mui/material/Radio';
|
||||
import Paper from '@mui/material/Paper';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import RadioGroup from '@mui/material/RadioGroup';
|
||||
import FormControlLabel from '@mui/material/FormControlLabel';
|
||||
|
||||
import Grid from '@mui/material/Grid';
|
||||
import Paper from '@mui/material/Paper';
|
||||
import Radio from '@mui/material/Radio';
|
||||
import RadioGroup from '@mui/material/RadioGroup';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
import { useState } from 'react';
|
||||
import { ComponentBox, ComponentLayout } from '../../layout';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
@@ -1,19 +1,16 @@
|
||||
import type { BoxProps } from '@mui/material/Box';
|
||||
import type { IconifyName } from 'src/components/iconify';
|
||||
|
||||
import { useCallback } from 'react';
|
||||
import { useCopyToClipboard } from 'minimal-shared/hooks';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import Grid from '@mui/material/Grid';
|
||||
import Tooltip from '@mui/material/Tooltip';
|
||||
import Container from '@mui/material/Container';
|
||||
import Grid from '@mui/material/Grid';
|
||||
import IconButton from '@mui/material/IconButton';
|
||||
import Tooltip from '@mui/material/Tooltip';
|
||||
import Typography from '@mui/material/Typography';
|
||||
|
||||
import { toast } from 'src/components/snackbar';
|
||||
import { Iconify, iconSets } from 'src/components/iconify';
|
||||
import { useCopyToClipboard } from 'minimal-shared/hooks';
|
||||
import { useCallback } from 'react';
|
||||
import { CustomBreadcrumbs } from 'src/components/custom-breadcrumbs';
|
||||
import type { IconifyName } from 'src/components/iconify';
|
||||
import { Iconify, iconSets } from 'src/components/iconify';
|
||||
import { toast } from 'src/components/snackbar';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
||||
|
@@ -1,41 +1,37 @@
|
||||
import Box from '@mui/material/Box';
|
||||
import Link from '@mui/material/Link';
|
||||
import Tooltip from '@mui/material/Tooltip';
|
||||
|
||||
import { RouterLink } from 'src/routes/components';
|
||||
|
||||
import { CONFIG } from 'src/global-config';
|
||||
import { countries } from 'src/assets/data';
|
||||
import {
|
||||
SentIcon,
|
||||
PasswordIcon,
|
||||
PlanFreeIcon,
|
||||
EmailInboxIcon,
|
||||
NewPasswordIcon,
|
||||
PasswordIcon,
|
||||
PlanFreeIcon,
|
||||
PlanPremiumIcon,
|
||||
PlanStarterIcon,
|
||||
SentIcon,
|
||||
} from 'src/assets/icons';
|
||||
import {
|
||||
SeoIllustration,
|
||||
UploadIllustration,
|
||||
BookingIllustration,
|
||||
CheckInIllustration,
|
||||
CheckoutIllustration,
|
||||
ForbiddenIllustration,
|
||||
ComingSoonIllustration,
|
||||
MotivationIllustration,
|
||||
ForbiddenIllustration,
|
||||
MaintenanceIllustration,
|
||||
ServerErrorIllustration,
|
||||
PageNotFoundIllustration,
|
||||
MotivationIllustration,
|
||||
OrderCompleteIllustration,
|
||||
PageNotFoundIllustration,
|
||||
SeoIllustration,
|
||||
ServerErrorIllustration,
|
||||
UploadIllustration,
|
||||
} from 'src/assets/illustrations';
|
||||
|
||||
import { Logo } from 'src/components/logo';
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { SvgColor } from 'src/components/svg-color';
|
||||
import { FlagIcon } from 'src/components/flag-icon';
|
||||
import { FileThumbnail } from 'src/components/file-thumbnail';
|
||||
|
||||
import { FlagIcon } from 'src/components/flag-icon';
|
||||
import { Iconify } from 'src/components/iconify';
|
||||
import { Logo } from 'src/components/logo';
|
||||
import { SvgColor } from 'src/components/svg-color';
|
||||
import { CONFIG } from 'src/global-config';
|
||||
import { RouterLink } from 'src/routes/components';
|
||||
import { ComponentBox, ComponentLayout } from '../../layout';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
@@ -1,10 +1,8 @@
|
||||
import type { PaperProps } from '@mui/material/Paper';
|
||||
import type { Theme, SxProps } from '@mui/material/styles';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import type { PaperProps } from '@mui/material/Paper';
|
||||
import Paper from '@mui/material/Paper';
|
||||
import type { SxProps, Theme } from '@mui/material/styles';
|
||||
import { useTheme } from '@mui/material/styles';
|
||||
|
||||
import { ComponentLayout } from '../../layout';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
@@ -1,10 +1,7 @@
|
||||
import type { Theme, SxProps, TypographyVariant } from '@mui/material/styles';
|
||||
|
||||
import { useRef, useState, useEffect, useCallback } from 'react';
|
||||
|
||||
import Box from '@mui/material/Box';
|
||||
import type { SxProps, Theme, TypographyVariant } from '@mui/material/styles';
|
||||
import Typography from '@mui/material/Typography';
|
||||
|
||||
import { useCallback, useEffect, useRef, useState } from 'react';
|
||||
import { ComponentBox, ComponentLayout } from '../../layout';
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
Reference in New Issue
Block a user