import React from 'react'; import { Typography } from '../typography/typography'; interface TabsProps { tabs: { name: string; ref: string; current: boolean }[]; setActiveTab: (ref: string) => void; classes?: { container?: string; mobileContainer?: string; desktopContainer?: string; tab?: string; typography?: string; }; } export const Tabs: React.FC = ({ tabs, setActiveTab, classes }) => { return (
); };