Merge pull request #22060 from bmakuh/patch-1

fix 'heigth' typo in Expo
This commit is contained in:
Arthur Ozga 2017-12-22 18:56:00 -08:00 committed by GitHub
commit d4d43914ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1411,7 +1411,7 @@ export interface SvgCommonProps {
originY?: number;
}
export class Svg extends Component<{ width: number, heigth: number }> { }
export class Svg extends Component<{ width: number, height: number }> { }
export class Rect extends Component<SvgCommonProps> { }
export interface CircleProps extends SvgCommonProps {