import * as React from "react";
import CheckCircle from "@/components/icons/check-circle.svg";
const VoteIcon: React.VoidFunctionComponent<{
type: "yes" | "no";
}> = ({ type }) => {
if (type === "yes") {
return ;
}
return ;
};
export default VoteIcon;