'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 (
); }; export { Spinner as default }; export const LoadingComponent: FC<{ width?: number; height?: number; }> = (props) => { return (