We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a56b3bf commit b984d47Copy full SHA for b984d47
packages/runtime-dom/types/jsx.d.ts
@@ -246,7 +246,7 @@ interface AriaAttributes {
246
}
247
248
export interface HTMLAttributes extends AriaAttributes {
249
- domPropsInnerHTML?: string
+ innerHTML?: string
250
251
class?: any
252
style?: string | CSSProperties
@@ -735,7 +735,14 @@ export interface WebViewHTMLAttributes extends HTMLAttributes {
735
736
737
export interface SVGAttributes extends AriaAttributes {
738
739
+
740
+ /**
741
+ * SVG Styling Attributes
742
+ * @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
743
+ */
744
+ class?: any
745
+ style?: string | CSSProperties
746
747
color?: string
748
height?: number | string
0 commit comments