plane/web/components/icons/audio-file-icon.tsx

14 lines
364 B
TypeScript
Raw Normal View History

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<AudioIconProps> = ({ width, height }) => (
<Image src={AudioFileIcon} height={height} width={width} alt="AudioFileIcon" />
);