All files / components LoadingSpinner.tsx

100% Statements 4/4
100% Branches 0/0
100% Functions 2/2
100% Lines 3/3

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48        3x                                     3x                                             4x  
interface LoadingSpinnerProps {
  text: string
}
 
const Spoke = () => {
  return (
    <svg
      width="6"
      height="16"
      viewBox="0 0 6 16"
      fill="none"
      className="spoke"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        d="M3 13V2.5"
        strokeWidth="5"
        strokeLinecap="round"
        strokeLinejoin="round"
      />
    </svg>
  )
}
const LoadingSpinner = ({ text }: LoadingSpinnerProps) => {
  return (
    <div
      className="loading-spinners flex flex-col md:flex-row align-middle"
      data-testid="loading-spinner"
    >
      <div className="relative loading-spinners justify-center mr-0 p-9 ">
        <Spoke />
        <Spoke />
        <Spoke />
        <Spoke />
        <Spoke />
        <Spoke />
        <Spoke />
        <Spoke />
      </div>
      <div className={'text-center text-xl font-display md:pl-2'}>
        <span>{text}</span>
      </div>
    </div>
  )
}
 
export default LoadingSpinner