import { ChevronRight, ChevronUpIcon } from 'lucide-react'; import { cn } from '../../lib/classname'; import { increaseLimitTabs, type IncreaseTab } from './IncreaseRoadmapLimit'; type PickLimitOptionProps = { activeTab: IncreaseTab | null; setActiveTab: (tab: IncreaseTab | null) => void; }; export function PickLimitOption(props: PickLimitOptionProps) { const { activeTab, setActiveTab } = props; return ( <>

Generate more Roadmaps

Pick one of the options below to increase your roadmap limit.

{increaseLimitTabs.map((tab) => { const isActive = tab.key === activeTab; return ( ); })}
); }