feat(message-actions): update rewrite button

This commit is contained in:
ItzCrazyKns 2024-05-18 13:10:54 +05:30
parent 3bfaf9be28
commit fcff93a594
No known key found for this signature in database
GPG Key ID: 8162927C7CCE3065
1 changed files with 2 additions and 1 deletions

View File

@ -10,9 +10,10 @@ const Rewrite = ({
return (
<button
onClick={() => rewrite(messageId)}
className="p-2 text-white/70 rounded-xl hover:bg-[#1c1c1c] transition duration-200 hover:text-white"
className="py-2 px-3 text-white/70 rounded-xl hover:bg-[#1c1c1c] transition duration-200 hover:text-white flex flex-row items-center space-x-1"
>
<ArrowLeftRight size={18} />
<p className="text-xs font-medium">Rewrite</p>
</button>
);
};