File size: 659 Bytes
c56ddce
ea6c2a8
 
 
a582fa0
ea6c2a8
 
 
 
 
 
 
 
 
 
e289c8f
ea6c2a8
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24


function Tabs({ children }: { children?: React.ReactNode }) {
  return (
    <div className="border-b border-gray-800 pl-4 lg:pl-7 pr-3 flex items-center justify-between">
      <div
        className="
      space-x-6"
      >
        <button className="rounded-md text-sm cursor-pointer transition-all duration-100 font-medium relative py-2.5 text-white">
          index.html
          <span className="absolute bottom-0 left-0 h-0.5 w-full transition-all duration-100 bg-white" />
        </button>
      </div>
      <div className="flex items-center justify-end gap-3">
        
        {children}
      </div>
    </div>
  );
}

export default Tabs;