diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-10 16:49:16 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-04-10 16:49:16 +0700 |
| commit | 62bebc1d33fd090d7666e18e7a0326ef7ef36897 (patch) | |
| tree | 1ec54e835b64adadc99ddc1ad3f23c1e63aaafcd /src/core/components/elements/Spinner/LogoSpinner.jsx | |
| parent | 8dea9e9242aca8bf003a7c2f69c96abafbf77e6d (diff) | |
fix
Diffstat (limited to 'src/core/components/elements/Spinner/LogoSpinner.jsx')
| -rw-r--r-- | src/core/components/elements/Spinner/LogoSpinner.jsx | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/core/components/elements/Spinner/LogoSpinner.jsx b/src/core/components/elements/Spinner/LogoSpinner.jsx new file mode 100644 index 00000000..73b84e84 --- /dev/null +++ b/src/core/components/elements/Spinner/LogoSpinner.jsx @@ -0,0 +1,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 |
