import React from 'react'; import cn from 'classnames'; interface Props { i: number; tab: string; currentTab: string; changeTab?: (tab: string) => void; isLive?: boolean; } function Tab({ i, tab, currentTab, changeTab, isLive }: Props) { return (
changeTab?.(tab)} className={cn( 'self-end py-1 px-4 text-sm', changeTab && !isLive ? 'cursor-pointer' : 'cursor-default', currentTab === tab ? 'border-gray-light border-t border-l border-r !border-b-white bg-white rounded-tl rounded-tr font-semibold' : 'cursor-pointer border-gray-light !border-b !border-t-transparent !border-l-transparent !border-r-transparent' )} > Tab {i + 1}
); } export default Tab;