Add strokeLinejoin prop to <svg> in react.d.ts (#11418)

* Add strokeLinejoin prop to <svg> in react.d.ts

* String literal types for strokeLinecap and strokeLinejoin
This commit is contained in:
Arman Dezfuli-Arjomandi
2016-09-23 08:42:21 -04:00
committed by Masahiro Wakame
parent 1bd8a1e366
commit e971807506

3
react/react.d.ts vendored
View File

@@ -2104,7 +2104,8 @@ declare namespace __React {
stopOpacity?: number | string;
stroke?: string;
strokeDasharray?: string;
strokeLinecap?: string;
strokeLinecap?: "butt" | "round" | "square" | "inherit";
strokeLinejoin?: "miter" | "round" | "bevel" | "inherit";
strokeMiterlimit?: string;
strokeOpacity?: number | string;
strokeWidth?: number | string;