3d5d3cedca
Co-authored-by: Michael Neale <michael.neale@gmail.com>
18 lines
451 B
TypeScript
18 lines
451 B
TypeScript
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;
|