import React from "react"; interface FR8IconProps { className?: string; } export const PDFSvgWithClose: React.FC = (props) => { const { className } = props; const _class = className || "w-10 h-10"; return ( {/* PDF Shape */} {/* CLOSE ICON INSIDE (grouped & positioned) */} {/* translate moves the small close-group nearer top-right of the SVG */} {/* red circular background */} {/* white 'X' made with two lines, rounded ends */} ); };