Skip to content

Commit

Permalink
bugfix: React attribute names
Browse files Browse the repository at this point in the history
  • Loading branch information
lawsonkight committed Sep 28, 2024
1 parent dae67c1 commit a4674eb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/bridge/src/components/AnimatedLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default () => {
>
<defs>
<linearGradient id="synGrad" fx="0%">
<stop offset="0%" stop-color="hsl(285deg 100% 65%)" />
<stop offset="100%" stop-color="hsl(265deg 100% 75%)" />
<stop offset="0%" stopColor="hsl(285deg 100% 65%)" />
<stop offset="100%" stopColor="hsl(265deg 100% 75%)" />
</linearGradient>
</defs>
<path
Expand Down
4 changes: 2 additions & 2 deletions docs/bridge/src/components/SVGBridge.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default () => {
>
<defs>
<linearGradient id="synGrad">
<stop offset="0%" stop-color="hsl(300deg 60% 50%)" />
<stop offset="100%" stop-color="hsl(270deg 85% 75%)" />
<stop offset="0%" stopColor="hsl(300deg 60% 50%)" />
<stop offset="100%" stopColor="hsl(270deg 85% 75%)" />
</linearGradient>
<mask id="switcherMask">
<rect width="100%" height="100%" fill="white" />
Expand Down
4 changes: 2 additions & 2 deletions docs/bridge/src/components/SVGWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ export default () => {
>
<defs>
<linearGradient id="synGrad">
<stop offset="0%" stop-color="hsl(300deg 60% 50%)" />
<stop offset="100%" stop-color="hsl(270deg 85% 75%)" />
<stop offset="0%" stopColor="hsl(300deg 60% 50%)" />
<stop offset="100%" stopColor="hsl(270deg 85% 75%)" />
</linearGradient>
<mask id="switcherMask">
<rect width="100%" height="100%" fill="white" />
Expand Down

0 comments on commit a4674eb

Please sign in to comment.