summaryrefslogtreecommitdiff
path: root/src/core/components/elements
diff options
context:
space:
mode:
authorRafi Zadanly <zadanlyr@gmail.com>2023-04-10 16:49:16 +0700
committerRafi Zadanly <zadanlyr@gmail.com>2023-04-10 16:49:16 +0700
commit62bebc1d33fd090d7666e18e7a0326ef7ef36897 (patch)
tree1ec54e835b64adadc99ddc1ad3f23c1e63aaafcd /src/core/components/elements
parent8dea9e9242aca8bf003a7c2f69c96abafbf77e6d (diff)
fix
Diffstat (limited to 'src/core/components/elements')
-rw-r--r--src/core/components/elements/Spinner/LogoSpinner.jsx15
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