diff options
Diffstat (limited to 'components/Splash.js')
-rw-r--r-- | components/Splash.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/Splash.js b/components/Splash.js index f807202..93ef3ee 100644 --- a/components/Splash.js +++ b/components/Splash.js @@ -1,11 +1,11 @@ import styles from 'styles/Main.module.scss' import React from 'react' import useSettings from 'hooks/useSettings' -import {FontAwesomeIcon} from '@fortawesome/react-fontawesome' -import {faBan, faSpinner} from '@fortawesome/free-solid-svg-icons' +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' +import { faBan, faSpinner } from '@fortawesome/free-solid-svg-icons' -const Splash = ({type, fixed = false}) => { - const {t} = useSettings() +const Splash = ({ type, fixed = false }) => { + const { t } = useSettings() return ( <div className={`${type === 'connection' ? styles.connection : styles.loader} ${fixed ? styles.fixed : ''}`}> |