blob: 252525af0961b48f794b493f3c72e60595f9c383 [file] [log] [blame]
#import "M3CIconAttributes.h"
NS_ASSUME_NONNULL_BEGIN
@implementation M3CIconAttributes
- (instancetype)initWithTextStyle:(UIFontTextStyle)textStyle pointSize:(CGFloat)pointSize {
self = [super init];
if (self) {
_textStyle = [textStyle copy];
_pointSize = pointSize;
}
return self;
}
@end
NS_ASSUME_NONNULL_END