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 "RNSVGGroup.h" 10 11 /** 12 * RNSVG defination are implemented as abstract UIViews for all elements inside Defs. 13 */ 14 15 @interface RNSVGSymbol : RNSVGGroup 16 17 @property (nonatomic, assign) CGFloat minX; 18 @property (nonatomic, assign) CGFloat minY; 19 @property (nonatomic, assign) CGFloat vbWidth; 20 @property (nonatomic, assign) CGFloat vbHeight; 21 @property (nonatomic, strong) NSString *align; 22 @property (nonatomic, assign) RNSVGVBMOS meetOrSlice; 23 24 - (void)renderSymbolTo:(CGContextRef)context width:(CGFloat)width height:(CGFloat)height; 25 26 @end 27