mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
ac4bb1c1b4
* refactor: remove unused icon files * refactor: attachment icons folder structure
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
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" />
|
|
);
|