import React from 'react'; type AttachmentMessageProps = { icon: React.ReactNode; onChangeFile: (event: React.ChangeEvent) => void; disableAction: boolean; }; // eslint-disable-next-line react/function-component-definition const AttachmentUploader= ({ icon, onChangeFile, disableAction, }: AttachmentMessageProps) => { return ( ); }; export default AttachmentUploader;