@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
14 lines (13 loc) • 466 B
TypeScript
import { ViewProps } from "@vnxjs/components/types/View";
import { CSSProperties, ReactNode } from "react";
interface TreeSelectTabProps extends ViewProps {
className?: string;
style?: CSSProperties;
value?: any;
disabled?: boolean;
badge?: boolean | string | number | ReactNode;
title?: ReactNode;
children?: ReactNode;
}
declare function TreeSelectTab(props: TreeSelectTabProps): JSX.Element;
export default TreeSelectTab;