UNPKG

@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>

15 lines (14 loc) 261 B
import React, { FC } from "react"; /** * Types */ export interface TabPanelProps { children?: React.ReactNode; index: number; value: number; } /** * Components */ declare const TabPanel: FC<TabPanelProps>; export default TabPanel;