import React from "react"; import Image from "next/image"; // image import AudioFileIcon from "public/attachment/audio-icon.png"; export type AudioIconProps = { width?: number; height?: number; }; export const AudioIcon: React.FC = ({ width, height }) => ( AudioFileIcon );