@payfit/unity-illustrations
Version:
21 lines (20 loc) • 657 B
TypeScript
import { IllustrationAsset, BaseSvgAsset } from './types.js';
export type SpeakerWithMicrophoneAsset = IllustrationAsset<BaseSvgAsset & {
readonly name: 'SpeakerWithMicrophone';
}>;
/**
* SpeakerWithMicrophone illustration asset
* @example
* ```tsx
* import { Illustration } from '@payfit/unity-illustrations'
* import SpeakerWithMicrophone from '@payfit/unity-illustrations/assets/SpeakerWithMicrophone'
*
* <Illustration
* illustration={SpeakerWithMicrophone}
* alt="SpeakerWithMicrophone illustration"
* size="md"
* />
* ```
*/
declare const SpeakerWithMicrophone: SpeakerWithMicrophoneAsset;
export default SpeakerWithMicrophone;