2024-05-02 15:08:24 +00:00
|
|
|
|
|
|
|
#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;
|
2024-11-20 14:28:34 +00:00
|
|
|
@property (nonatomic, assign) RNSVGMaskType maskType;
|
2024-05-02 15:08:24 +00:00
|
|
|
|
|
|
|
@end
|