import Image from "next/image"; export interface Trash { file: string, description: string, filetype: string, filesize: string, } const TrashCards = ({ file, description, filetype, filesize }: Trash) => { return (
{description}

{description}

{filetype}

{" "} .{" "}

{filesize}

); } export default TrashCards;