style: convert SVG attributes to React camelCase format (#5284)

📝 (AgentQL.jsx): Update attribute names from camelCase to PascalCase for consistency and better readability.
This commit is contained in:
Cristhian Zanforlin Lousa 2024-12-16 10:12:09 -03:00 committed by GitHub
commit d147a73c43
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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)"
/>
@ -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"
@ -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>