19 lines
275 B
Objective-C
19 lines
275 B
Objective-C
//
|
|
// IJSVGText.h
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 01/01/2017.
|
|
// Copyright © 2017 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "IJSVGGroup.h"
|
|
|
|
@interface IJSVGText : IJSVGGroup {
|
|
|
|
NSString* text;
|
|
}
|
|
|
|
@property (nonatomic, copy) NSString* text;
|
|
|
|
@end
|