You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
402 B
15 lines
402 B
|
|
#import "RNSVGGroup.h"
|
|
#import "RNSVGLength.h"
|
|
|
|
@interface RNSVGMask : RNSVGGroup
|
|
|
|
@property (nonatomic, strong) RNSVGLength *x;
|
|
@property (nonatomic, strong) RNSVGLength *y;
|
|
@property (nonatomic, strong) RNSVGLength *maskwidth;
|
|
@property (nonatomic, strong) RNSVGLength *maskheight;
|
|
@property (nonatomic, assign) RNSVGUnits maskUnits;
|
|
@property (nonatomic, assign) RNSVGUnits maskContentUnits;
|
|
|
|
@end
|