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