Rotate file upload icon instead of switching icon.

This commit is contained in:
Paul
2021-07-06 11:52:07 +01:00
parent 98e0edd331
commit e8a111e6bc
2 changed files with 14 additions and 8 deletions

View File

@@ -276,14 +276,9 @@ export function FileUploader(props: Props) {
if (uploading) return cancel();
if (attached) return remove();
onClick();
}}>
{uploading ? (
<XCircle size={size} />
) : attached ? (
<X size={size} />
) : (
<Plus size={size} />
)}
}}
rotate={uploading || attached ? '45deg' : undefined}>
<Plus size={size} />
</IconButton>
);
}