1 /**
2  * Copyright (c) 2015-present, Horcrux.
3  * All rights reserved.
4  *
5  * This source code is licensed under the MIT-style license found in the
6  * LICENSE file in the root directory of this source tree.
7  */
8 
9 #import "RNSVGUIKit.h"
10 
11 #import "RNSVGVBMOS.h"
12 
13 @interface RNSVGViewBox : NSObject
14 
15 + (CGAffineTransform)getTransform:(CGRect)vbRect
16                             eRect:(CGRect)eRect
17                             align:(NSString *)align
18                       meetOrSlice:(RNSVGVBMOS)meetOrSlice;
19 
20 @end
21