// // TUIInputPreviewBar.h // TUIChat // // Created by harvy on 2021/11/9. // Copyright © 2023 Tencent. All rights reserved. // #import #import "TUIReplyPreviewData.h" NS_ASSUME_NONNULL_BEGIN @interface TUIReplyPreviewBar : UIView @property(nonatomic, strong) UILabel *titleLabel; @property(nonatomic, strong) UIButton *closeButton; @property(nonatomic, copy) TUIInputPreviewBarCallback onClose; @property(nonatomic, strong) TUIReplyPreviewData *previewData; @property(nonatomic, strong) TUIReferencePreviewData *previewReferenceData; @end @interface TUIReferencePreviewBar : TUIReplyPreviewBar @end NS_ASSUME_NONNULL_END