mfg-ui-components
Version:
React UI library with reusable components
12 lines (11 loc) • 378 B
TypeScript
import "./TabMenu.scss";
export type tabView = "mfg-vertical" | "mfg-horizontal";
export interface Props {
TabLabel: any[];
TabValue: any[];
tabView?: tabView;
customClass?: string;
customId?: string;
}
declare const TabMenu: ({ TabLabel, TabValue, tabView, customClass, customId }: Props) => import("react/jsx-runtime").JSX.Element;
export default TabMenu;