Skip to content

Commit

Permalink
Bugfix/accordion svg duped class attribute (#2597)
Browse files Browse the repository at this point in the history
  • Loading branch information
endigo9740 committed Apr 5, 2024
1 parent 4267454 commit c5aafca
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/cuddly-bats-return.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@skeletonlabs/skeleton": patch
---

Bugfix: Removed duplicate `class` attribute on AccordionItem SVG caret icon
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
export let transitionOutParams: TransitionParams<TransitionOut> = getContext('transitionOutParams');
const svgCaretIcon = `
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512" class={classesControlCaret}>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path d="M201.4 374.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 306.7 86.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z" />
</svg>`;
Expand Down

0 comments on commit c5aafca

Please sign in to comment.