Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/ui / dist / components / molecules / TabList / typings.d.ts
Size: Mime:
import { ReactNode } from 'react';
export interface TabListRenderProp extends Function {
    (props: TabListProps): ReactNode;
}
export interface Items {
    label?: string;
}
export interface ProductItem {
    title?: string;
    item?: Array<Items>;
}
export declare type ListOfproduct = Array<ProductItem>;
export interface TabListProps {
    className?: string;
    children?: ReactNode;
    dataQa?: string;
    list?: ListOfproduct;
    renderList?: TabListRenderProp;
    renderContainer?: TabListRenderProp;
    renderWrapper?: TabListRenderProp;
}