// Copyright 2021 Signal Messenger, LLC // SPDX-License-Identifier: AGPL-3.0-only import type { ReactElement } from 'react'; import React from 'react'; import { VoiceNotesPlaybackContext } from '../../components/VoiceNotesPlaybackContext'; import type { Props as MessageAudioProps } from './MessageAudio'; import { SmartMessageAudio } from './MessageAudio'; type AudioAttachmentProps = Omit; export function renderAudioAttachment( props: AudioAttachmentProps ): ReactElement { return ( {voiceNotesPlaybackProps => { return ( voiceNotesPlaybackProps && ( ) ); }} ); }