Closed mattclough1 closed 7 months ago
Trying to use the slot attribute on an svg tag, shows the error Property 'slot' does not exist on type 'SVGProps<SVGSVGElement>', however SVGElement inherits the slot property from Element via this inheritance chain:
slot
svg
Property 'slot' does not exist on type 'SVGProps<SVGSVGElement>'
SVGElement
Element
flowchart RL SVGSVGElement-->SVGGraphicsElement SVGGraphicsElement-->SVGElement SVGElement-->Element
PR welcome
Trying to use the
slot
attribute on ansvg
tag, shows the errorProperty 'slot' does not exist on type 'SVGProps<SVGSVGElement>'
, howeverSVGElement
inherits theslot
property fromElement
via this inheritance chain: