@cmk/fe_utils
Version:
frontend utility library
24 lines (22 loc) • 707 B
TypeScript
import { CTabsProps } from '../../../../components/navigation/CTabs';
import { CommonComponentPropertys } from '../../componentProperty';
export declare const TabsComponentDef: {
type: "Tabs";
props: {
items: ({
value: string;
label: string;
isInitialValue: boolean;
} | {
value: string;
label: string;
isInitialValue?: undefined;
})[];
};
state: string;
icon: string;
category: "navigation";
component: (props: CTabsProps & CommonComponentPropertys) => import("react/jsx-runtime").JSX.Element;
schema: import('../..').ExtendedObjectSchemaType;
renderType: "navigation";
};