@vlinderclimate/net-zero-ui
Version:
<div align="center"> <img src="https://storage.yandexcloud.net/static.vlinderstorage.com/Telegram_VlinderTech.png" width=200 /> </div> <h1 align="center">Net Zero UI kit</h1>
14 lines (13 loc) • 348 B
TypeScript
import React, { FC } from "react";
import { TabsProps as MuiTabsProps } from "@mui/material/Tabs";
/**
* Types
*/
export interface TabsProps extends Omit<MuiTabsProps, "onChange"> {
onChange: (event: React.SyntheticEvent, newValue: number) => void;
}
/**
* Components
*/
declare const Tabs: FC<TabsProps>;
export default Tabs;