[expo]: Add missing SvgCommonProps (#24965)

* fillRule
* rotation (both 'rotate' and 'rotation' are currently supported, but
  documentation specifies 'rotation' as the current version to use.
This commit is contained in:
Janeene Beeforth
2018-04-13 08:50:29 -07:00
committed by Mohamed Hegazy
parent dcf3384ac2
commit ed66591fa0
+2
View File
@@ -1873,6 +1873,7 @@ export namespace SQLite {
export interface SvgCommonProps {
fill?: string;
fillOpacity?: number | string;
fillRule?: 'nonzero' | 'evenodd';
stroke?: string;
strokeWidth?: number | string;
strokeOpacity?: number | string;
@@ -1883,6 +1884,7 @@ export interface SvgCommonProps {
x?: number | string;
y?: number | string;
rotate?: number | string;
rotation?: number | string;
scale?: number | string;
origin?: number | string;
originX?: number | string;