/// import { Icons } from "./Icons"; interface IconProps { icon: Icons; className?: string; title?: string; } export default function Icon({ icon, className, title, }: IconProps): JSX.Element; export {};