Files
GitHawk/Classes/Issues/Labels/IssueLabelDotCell.swift
Hesham Salman f213bac924 Thin SwiftLint ruleset (#704)
* Thin SwiftLint ruleset

* Disabled trailing_whitespace rule
2017-10-23 16:58:09 -04:00

21 lines
369 B
Swift

//
// IssueLabelDotCell.swift
// Freetime
//
// Created by Ryan Nystrom on 5/20/17.
// Copyright © 2017 Ryan Nystrom. All rights reserved.
//
import UIKit
final class IssueLabelDotCell: UICollectionViewCell {
static let reuse = "cell"
override func layoutSubviews() {
super.layoutSubviews()
layer.cornerRadius = bounds.width/2
}
}