d78b762f7b
refactor(icons): remove fontawesome EE-4459 refactor(icon) replace feather with lucide EE-4472
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="animate-spin-slow !ml-1" />
|
|
</div>
|
|
);
|
|
}
|