feat: 10.10线上最新代码提交
This commit is contained in:
20
src/components/Generating/index.js
Normal file
20
src/components/Generating/index.js
Normal file
@@ -0,0 +1,20 @@
|
||||
import Image from "../Image";
|
||||
|
||||
const Generating = ({ className }) => (
|
||||
<div
|
||||
className={`flex items-center h-[3.375rem] px-6 bg-n-8/80 rounded-[1.6875rem] ${
|
||||
className || ""
|
||||
} text-base`}
|
||||
>
|
||||
<Image
|
||||
className="w-5 h-5 mr-4"
|
||||
src="/images/loading.png"
|
||||
width={20}
|
||||
height={20}
|
||||
alt="Loading"
|
||||
/>
|
||||
AI is generating|
|
||||
</div>
|
||||
);
|
||||
|
||||
export default Generating;
|
||||
Reference in New Issue
Block a user