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

14 lines
366 B
TypeScript
Raw Normal View History

import React from "react";
import Image from "next/image";
// image
2024-06-11 09:09:52 +00:00
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" />
);