1
0
mirror of https://github.com/metabolist/metatext synced 2025-01-09 16:43:33 +01:00
metatext-app-ios-iphone-ipad/Views/EmojiCollectionViewCell.swift
Justin Mazzocchi dfcc949864
wip
2021-01-15 02:13:10 -08:00

15 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)
}
}