metatext/Views/EmojiCollectionViewCell.swift

15 lines
383 B
Swift
Raw Normal View History

2021-01-15 10:13:10 +00:00
// Copyright © 2021 Metabolist. All rights reserved.
import UIKit
import ViewModels
final class EmojiCollectionViewCell: UICollectionViewCell {
var emoji: PickerEmoji?
override func updateConfiguration(using state: UICellConfigurationState) {
guard let emoji = emoji else { return }
contentConfiguration = EmojiContentConfiguration(emoji: emoji)
}
}