summaryrefslogtreecommitdiff
path: root/src/core/components/elements/Spinner/LogoSpinner.jsx
blob: 73b84e84e0f17892b3a3c2c550515e9c7d1ca973 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Image from 'next/image'
import IndoteknikLogo from '@/images/LOGO-INDOTEKNIK-GEAR.png'

const LogoSpinner = ({ ...props }) => (
  <Image
    src={IndoteknikLogo}
    alt='Indoteknik Logo'
    width={64}
    height={64}
    className='page-loader'
    {...props}
  />
)

export default LogoSpinner