UNPKG

@vnmfify/core

Version:

```shell npm i @vnmfify/core -S ```

10 lines (9 loc) 284 B
/// <reference types="react" /> import { TabbarProps } from "./tabbar"; import TabbarItem from "./tabbar-item"; interface TabbarInterface { (props: TabbarProps): JSX.Element; TabItem: typeof TabbarItem; } declare const Tabbar: TabbarInterface; export default Tabbar;