Skip to content

Commit

Permalink
fix logo size prop
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanatkn committed Jul 2, 2024
1 parent eb1547f commit dc8b326
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 5 additions & 0 deletions .changeset/blue-swans-suffer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ryanatkn/fuz": patch
---

fix logo size prop
4 changes: 2 additions & 2 deletions src/lib/Fuzling.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
viewBox="0 0 100 100"
{...attrs}
aria-label={label}
width={final_width}
height={final_height}
style:width={final_width}
style:height={final_height}
class={classes}
>
<g>
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Spider.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
viewBox="0 0 100 100"
{...attrs}
aria-label={label}
width={final_width}
height={final_height}
style:width={final_width}
style:height={final_height}
class={classes}
>
<path
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Webdevladder_Logo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
viewBox="0 0 100 100"
{...attrs}
aria-label={label}
width={final_width}
height={final_height}
style:width={final_width}
style:height={final_height}
class={classes}
>
<g>
Expand Down
4 changes: 2 additions & 2 deletions src/lib/Zzz_Logo.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@
viewBox="0 0 100 100"
{...attrs}
aria-label={label}
width={final_width}
height={final_height}
style:width={final_width}
style:height={final_height}
class={classes}
>
<g>
Expand Down

0 comments on commit dc8b326

Please sign in to comment.