mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-08-08 08:31:13 +00:00
12 lines
630 B
Objective-C
12 lines
630 B
Objective-C
#import "SVGUseElement.h"
|
|
|
|
@interface SVGUseElement ()
|
|
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* x;
|
|
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* y;
|
|
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* width;
|
|
@property(nonatomic, strong, readwrite) /*FIXME: should be SVGAnimatedLength instead*/ SVGLength* height;
|
|
@property(nonatomic, strong, readwrite) SVGElementInstance* instanceRoot;
|
|
@property(nonatomic, strong, readwrite) SVGElementInstance* animatedInstanceRoot;
|
|
|
|
@end
|