import Image from "next/image"; type Props = { onTabClick: (clickedTab: "description" | "api") => void; tab: string; }; export const TabModelDetail: React.FC = ({ onTabClick, tab }) => { const btns = [ { name: "api", icon: "/icons/unicorn_arrow.svg", }, { name: "description", icon: "/icons/unicorn_exclamation-circle.svg", }, ]; return (
{btns.map((item, index) => ( ))}
); };