Files
GitHawk/Classes/Issues/Request/IssueRequestCell.swift
Ryan Nystrom 21f4a903bc Assign/request event text refactor (#867)
* Upload icon consistent with rest of bar

* Assign and request events use attributed text with linebreaks

* size cell to content
2017-11-06 09:02:10 -05:00

21 lines
363 B
Swift

//
// IssueRequestCell.swift
// Freetime
//
// Created by Ryan Nystrom on 7/12/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import UIKit
import SnapKit
final class IssueRequestCell: AttributedStringCell {
// MARK: Public API
func configure(_ model: IssueRequestModel) {
set(attributedText: model.attributedText)
}
}