tokenary/Tokenary macOS/Views/AddAccountOptionCellView.swift

14 lines
254 B
Swift
Raw Normal View History

2021-11-30 15:56:00 +03:00
// Copyright © 2021 Tokenary. All rights reserved.
2021-07-24 18:02:25 +03:00
import Cocoa
2021-07-24 23:04:27 +03:00
class AddAccountOptionCellView: NSTableRowView {
2021-07-24 18:02:25 +03:00
@IBOutlet weak var titleLabel: NSTextField!
func setup(title: String) {
titleLabel.stringValue = title
}
}