16 lines
381 B
TypeScript
16 lines
381 B
TypeScript
import clsx from 'clsx';
|
|
import { Settings } from 'lucide-react';
|
|
|
|
import { Icon } from '@@/Icon';
|
|
|
|
import styles from './EdgeLoadingSpinner.module.css';
|
|
|
|
export function EdgeLoadingSpinner() {
|
|
return (
|
|
<div className={clsx('row', styles.root)}>
|
|
Connecting to the Edge environment...
|
|
<Icon icon={Settings} className="!ml-1 animate-spin-slow" />
|
|
</div>
|
|
);
|
|
}
|