2023-04-06 13:46:50 +00:00
|
|
|
import React from "react";
|
|
|
|
import Image from "next/image";
|
2023-11-29 15:02:10 +00:00
|
|
|
// image
|
2023-04-06 13:46:50 +00:00
|
|
|
import AudioFileIcon from "public/attachment/audio-icon.png";
|
|
|
|
|
2023-11-29 15:02:10 +00:00
|
|
|
export type AudioIconProps = {
|
|
|
|
width?: number;
|
|
|
|
height?: number;
|
|
|
|
};
|
|
|
|
|
|
|
|
export const AudioIcon: React.FC<AudioIconProps> = ({ width, height }) => (
|
2023-04-06 13:46:50 +00:00
|
|
|
<Image src={AudioFileIcon} height={height} width={width} alt="AudioFileIcon" />
|
|
|
|
);
|