import React from "react"; const Ping = ({ color }: { color: "blue" | "white" }) => { const colorClasses = { primary: color == "blue" ? "bg-sky-400" : "bg-white", secondary: color == "blue" ? "bg-sky-400" : "bg-white", }; return ( ); }; export default Ping;