interface Iprops { icon: string; text: string; detail?: string; } export default function Placeholder({ icon, text, detail }: Iprops): JSX.Element; export {};