Skip to content

Commit

Permalink
style: convert SVG attributes to React camelCase format (#5284)
Browse files Browse the repository at this point in the history
📝 (AgentQL.jsx): Update attribute names from camelCase to PascalCase for consistency and better readability.
  • Loading branch information
Cristhianzl authored Dec 16, 2024
1 parent ba6f518 commit d147a73
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/frontend/src/icons/AgentQL/AgentQL.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ const SvgAgentQL = (props) => (
{...props}
>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M302.444 370.307L345.993 413.721C349.037 416.757 353.974 416.757 357.018 413.721L509.717 261.495C512.762 258.46 512.762 253.539 509.717 250.503L357.018 98.2764C353.974 95.2413 349.037 95.2411 345.993 98.2764L302.444 141.691C299.4 144.726 299.4 149.647 302.444 152.683L400.568 250.503C403.612 253.539 403.612 258.46 400.568 261.495L302.444 359.316C299.4 362.351 299.4 367.272 302.444 370.307ZM209.557 152.684C212.602 149.649 212.602 144.728 209.557 141.692L166.008 98.2779C162.963 95.2426 158.028 95.2426 154.983 98.2779L2.28423 250.504C-0.760459 253.539 -0.760459 258.46 2.28423 261.497L154.983 413.723C158.028 416.759 162.963 416.759 166.008 413.723L209.557 370.309C212.602 367.274 212.602 362.352 209.557 359.318L111.434 261.497C108.389 258.46 108.389 253.539 111.434 250.504L209.557 152.684Z"
fill="url(#paint0_linear_78_78)"
/>
<path
fill-rule="evenodd"
clip-rule="evenodd"
fillRule="evenodd"
clipRule="evenodd"
d="M302.444 370.307L345.993 413.721C349.037 416.757 353.974 416.757 357.018 413.721L509.717 261.495C512.762 258.46 512.762 253.539 509.717 250.503L357.018 98.2764C353.974 95.2413 349.037 95.2411 345.993 98.2764L302.444 141.691C299.4 144.726 299.4 149.647 302.444 152.683L400.568 250.503C403.612 253.539 403.612 258.46 400.568 261.495L302.444 359.316C299.4 362.351 299.4 367.272 302.444 370.307ZM209.557 152.684C212.602 149.649 212.602 144.728 209.557 141.692L166.008 98.2779C162.963 95.2426 158.028 95.2426 154.983 98.2779L2.28423 250.504C-0.760459 253.539 -0.760459 258.46 2.28423 261.497L154.983 413.723C158.028 416.759 162.963 416.759 166.008 413.723L209.557 370.309C212.602 367.274 212.602 362.352 209.557 359.318L111.434 261.497C108.389 258.46 108.389 253.539 111.434 250.504L209.557 152.684Z"
fill="url(#paint1_radial_78_78)"
/>
Expand All @@ -28,8 +28,8 @@ const SvgAgentQL = (props) => (
y2="436.149"
gradientUnits="userSpaceOnUse"
>
<stop offset="0.341457" stop-color="#4B52F6" />
<stop offset="1" stop-color="#37B6B6" />
<stop offset="0.341457" stopColor="#4B52F6" />
<stop offset="1" stopColor="#37B6B6" />
</linearGradient>
<radialGradient
id="paint1_radial_78_78"
Expand All @@ -39,8 +39,8 @@ const SvgAgentQL = (props) => (
gradientUnits="userSpaceOnUse"
gradientTransform="translate(239.5 131) rotate(89.3969) scale(285.016 300.945)"
>
<stop offset="0.642769" stop-color="#0B30B2" />
<stop offset="0.705" stop-color="#0B30B2" stop-opacity="0" />
<stop offset="0.642769" stopColor="#0B30B2" />
<stop offset="0.705" stopColor="#0B30B2" stopOpacity="0" />
</radialGradient>
</defs>
</svg>
Expand Down

0 comments on commit d147a73

Please sign in to comment.