refactor(web): upload panel (#12326)

Co-authored-by: Alex <alex.tran1502@gmail.com>
This commit is contained in:
Jason Rasmussen 2024-09-04 23:38:55 -04:00 committed by GitHub
parent 0d6bef2c05
commit f4ec842577
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 184 additions and 140 deletions

View file

@ -16,13 +16,14 @@
export let ariaLabelledby: string | undefined = undefined;
export let strokeWidth: number = 0;
export let strokeColor: string = 'currentColor';
export let spin = false;
</script>
<svg
width={size}
height={size}
{viewBox}
class="{className} {flipped ? '-scale-x-100' : ''}"
class="{className} {flipped ? '-scale-x-100' : ''} {spin ? 'animate-spin' : ''}"
{role}
stroke={strokeColor}
stroke-width={strokeWidth}