UNPKG

@vnmfify/core

Version:

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

14 lines (13 loc) 488 B
import { ViewProps } from "@vnxjs/components/types/View"; import { CSSProperties, ReactNode } from "react"; import { SidebarTabObject } from "./sidebar-tab.shared"; export interface SidebarProps extends ViewProps { className?: string; style?: CSSProperties; defaultValue?: any; value?: any; children?: ReactNode; onChange?(value: any, tab: SidebarTabObject): void; } declare function Sidebar(props: SidebarProps): JSX.Element; export default Sidebar;