import React from 'react'; import './spinner.module.scss'; import styles from './spinner.module.scss'; interface ISpinner { Loadertype: string; isLoading: boolean; } export const Spinner = ({ Loadertype, isLoading }: ISpinner) => { if (isLoading === false) return <>>; if (Loadertype == 'child') return
; return (