Merge pull request #16941 from dyst5422/patch-2

React: Add animateTransform SVG element to JSX.IntrinsicElements
This commit is contained in:
Mine Starks
2017-06-15 11:21:22 -07:00
committed by GitHub

View File

@@ -2857,6 +2857,7 @@ declare global {
svg: React.SVGProps<SVGSVGElement>;
animate: React.SVGProps<SVGElement>; // TODO: It is SVGAnimateElement but is not in TypeScript's lib.dom.d.ts for now.
animateTransform: React.SVGProps<SVGElement>; // TODO: It is SVGAnimateTransformElement but is not in TypeScript's lib.dom.d.ts for now.
circle: React.SVGProps<SVGCircleElement>;
clipPath: React.SVGProps<SVGClipPathElement>;
defs: React.SVGProps<SVGDefsElement>;