File size: 893 Bytes
ec4551b | 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 | 'use client';
import { FC } from 'react';
const Spinner: FC<{
type?: string;
color?: string;
width?: number;
height?: number;
}> = ({ color = '#612bd3', width = 100, height = 100 }) => {
const size = Math.min(width, height);
const borderWidth = Math.max(2, Math.round(size / 8));
return (
<div
style={{
width: size,
height: size,
border: `${borderWidth}px solid transparent`,
borderTopColor: color,
borderRadius: '50%',
animation: 'spin 0.8s linear infinite',
}}
/>
);
};
export { Spinner as default };
export const LoadingComponent: FC<{
width?: number;
height?: number;
}> = (props) => {
return (
<div className="flex-1 flex justify-center pt-[100px]">
<Spinner
color="#612bd3"
width={props.width || 100}
height={props.height || 100}
/>
</div>
);
};
|