mirror of
https://github.com/aljazceru/goose.git
synced 2026-02-22 15:04:29 +01:00
19 lines
478 B
TypeScript
19 lines
478 B
TypeScript
import React from 'react';
|
|
import GooseLogo from './GooseLogo';
|
|
|
|
const LoadingGoose = () => {
|
|
return (
|
|
<div className="w-full pb-[2px]">
|
|
<div
|
|
data-testid="loading-indicator"
|
|
className="flex items-center text-xs text-textStandard mb-2 mt-2 animate-[appear_250ms_ease-in_forwards]"
|
|
>
|
|
<GooseLogo className="mr-2" size="small" hover={false} />
|
|
goose is working on it…
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default LoadingGoose;
|