UNPKG

@yosgo/swap-ui

Version:
11 lines (10 loc) 297 B
import { TabPanelProps } from "@material-ui/lab"; import React from "react"; interface MyTabPanelProps { children?: React.ReactNode; index: any; value: any; other?: TabPanelProps; } declare function TabPanel(props: MyTabPanelProps): JSX.Element; export default TabPanel;