import React from "react"; import { cn } from "@/lib/utils"; import { X } from "lucide-react"; interface TabProps { fileName: string; isActive: boolean; onClick: () => void; onClose: () => void; } export function CodeTab({ fileName, isActive, onClick, onClose }: TabProps) { return (
{fileName}
); }