mirror of
https://github.com/metabolist/metatext.git
synced 2024-11-22 16:21:00 +00:00
14 lines
383 B
Swift
14 lines
383 B
Swift
// 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)
|
|
}
|
|
}
|