Files
react-native-svg/apple/Elements/RNSVGForeignObject.h
2020-11-25 16:31:39 -08:00

13 lines
318 B
Objective-C

#import "RNSVGGroup.h"
#import "RNSVGLength.h"
@interface RNSVGForeignObject : RNSVGGroup
@property (nonatomic, strong) RNSVGLength *x;
@property (nonatomic, strong) RNSVGLength *y;
@property (nonatomic, strong) RNSVGLength *foreignObjectwidth;
@property (nonatomic, strong) RNSVGLength *foreignObjectheight;
@end