@brizy/ui
Version:
React elements in Brizy style
17 lines (16 loc) • 463 B
TypeScript
import { FCC } from "../types";
export interface Props {
defaultActiveKey?: string;
activeKey?: string;
size?: "small" | "large";
type?: "line" | "card" | "editable-card";
tabPosition?: "top" | "right" | "bottom" | "left";
onChange?: (k: string) => void;
onEdit?: () => void;
}
export declare const Tabs: FCC<Props>;
export interface TabPaneProps {
key: string;
tab?: string;
}
export declare const TabPane: FCC<TabPaneProps>;