supabase-community / auth-ui

Pre-built Auth UI for React
https://supabase.com/docs/guides/auth/auth-helpers/auth-ui
MIT License
487 stars 121 forks source link

fix: svg icons attribute names #75

Closed beauja closed 1 year ago

beauja commented 1 year ago

Change occurences of the 'clip-rule', 'fill-rule', 'stop-color', 'stop-opacity' SVG attributes to camel-case.

What kind of change does this PR introduce?

Bug fix. See issue #74.

What is the current behavior?

Some SVG element attributes in Icons.tsx are not camel-cased, as specified by React.

What is the new behavior?

All occurences of the clip-rule, fill-rule, stop-color and stop-opacity attributes within Icons.tsx have been changed to camel-case.

silentworks commented 1 year ago

Thank you for this contribution.