//
//  CenterConfirmItem.swift
//  PaiaiUIKit
//
//  Created by ffib on 2019/1/23.
//  Copyright © 2019 yb. All rights reserved.
//

import Foundation

final class CenterConfirmItem: AlertItem {
    
    static var `default`: CenterConfirmItem {
        return CenterConfirmItem()
    }
    
    init() {
        super.init(frame: CGRect.zero)
        initProperty()
    }
    
    func initProperty() {
        titleLabel?.numberOfLines = 0
        titleLabel?.font = UIFont.systemFont(ofSize: 17)
        backgroundColor = UIColor(r: 129, g: 209, b: 53)
        setTitleColor(UIColor.white, for: .normal)
    }
}