import clsx from "clsx"; import React from "react"; import type { TabsProps } from "./types"; import tabsTheme from "./tabsTheme"; import { TabsContext } from "./context/TabsContext"; const TETabs: React.FC = /*#__PURE__*/ React.forwardRef< HTMLUListElement, TabsProps >( ( { className, children, theme: customTheme, fill = false, justify = false, vertical = false, pills = false, ...props }, ref ) => { const theme = { ...tabsTheme, ...customTheme, }; const classes = clsx( pills ? vertical ? theme.verticalTabs : theme.pillsTabs : vertical ? theme.verticalTabs : theme.defaultTabs, className ); return ( ); } ); export default TETabs;