### Is there an existing issue for this? - [x] I have searched the existing issues and my issue is unique - [x] My issue appears in the command-line and not only in the text editor ### Description Overview <!--Brief description--> In SVG elements, like `rect`, `transform-origin` is misattributed as unknown property, but it is a [valid attribute](https://developer.mozilla.org/en-US/docs/Web/SVG/Reference/Attribute/transform-origin). <!--Show example of your code (as text format), add images/videos/gifs to help explain example--> <!--and/or Link of repo to where issue is occurring--> ```js <svg> <rect transform-origin="center" /> </svg> ``` <!--What is happening? / What is the error?--> I get the following message: > Unknown property 'transform-origin' foundeslint[react/no-unknown-property](https://github.com/jsx-eslint/eslint-plugin-react/tree/master/docs/rules/no-unknown-property.md) <!--What command(s) did you run to reproduce issue?--> ### Expected Behavior <!--Brief description--> <!--Show example of code (as text format), add images/videos/gifs to help explain expected behavior--> ### eslint-plugin-react version 7.37.4 ### eslint version 9.23.0 ### node version v22.14.0