






#import "KilowattsExposuresSolutionsTremorDiscountsCell.h"
#import "UserArtRoot.h"
#import "Masonry.h"

@implementation KilowattsExposuresSolutionsTremorDiscountsCell

-(id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if(self){
        
        self.backgroundColor = UIColor.whiteColor;
        self.contentView.backgroundColor = UIColor.whiteColor;
        self.selectionStyle = UITableViewCellSelectionStyleNone;
        
        
        self.tipAgePongView = [UIImageView new];
        self.tipAgePongView.tintColor = [UserArtRoot partBoostColor];
        self.tipAgePongView.layer.cornerRadius = 15;
        [self.contentView addSubview:self.tipAgePongView];
        [self.tipAgePongView mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.mas_equalTo(UserArtRoot.wayAbortLove.panGreenSpan);
            make.centerY.mas_equalTo(self);
            make.width.height.mas_equalTo(UserArtRoot.wayAbortLove.satisfiedWon);
        }];
        
        
        self.drumDarkName = [UILabel new];
        self.drumDarkName.font = [UIFont boldSystemFontOfSize:16];
        self.drumDarkName.textColor = UIColor.darkGrayColor;
        [self.contentView addSubview:self.drumDarkName];
        [self.drumDarkName mas_makeConstraints:^(MASConstraintMaker *make) {
            make.left.equalTo(self.tipAgePongView.mas_right).offset(UserArtRoot.wayAbortLove.panGreenSpan);
            make.bottom.equalTo(self.contentView.mas_centerY);
        }];
        
        
        self.sawPutBadgeTime = [UILabel new];
        self.sawPutBadgeTime.font =  [UIFont systemFontOfSize:11];
        self.sawPutBadgeTime.textColor = UIColor.grayColor;
        [self.contentView addSubview:self.sawPutBadgeTime];
        [self.sawPutBadgeTime mas_makeConstraints:^(MASConstraintMaker *make) {
            make.top.equalTo(self.contentView.mas_centerY).offset(UserArtRoot.wayAbortLove.growNapBusy);
            make.left.equalTo(self.drumDarkName);
        }];
    }
    return self;
}

@end
