mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
ee30eb0590
* fix: upgrading next package and removed unused deps * chore: unused variable removed * chore: next image icon fix * chore: unused component removed * chore: next image icon fix * chore: replace use-debounce with lodash debounce * chore: unused component removed * resolved: fixed issue with next link component * fix: updates in next config * fix: updating types pages --------- Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so>
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" />
|
|
);
|