Spaces:
Running
Running
File size: 405 Bytes
f5ed9bf |
1 2 3 4 5 6 7 8 9 10 11 12 |
const MessageBoxLoading = () => {
return (
<div className="flex flex-col space-y-2 w-full lg:w-9/12 bg-[#111111] animate-pulse rounded-lg p-3">
<div className="h-2 rounded-full w-full bg-[#1c1c1c]" />
<div className="h-2 rounded-full w-9/12 bg-[#1c1c1c]" />
<div className="h-2 rounded-full w-10/12 bg-[#1c1c1c]" />
</div>
);
};
export default MessageBoxLoading;
|