react-components-design-system
Version:
React UI component for design system FIS ES PB5
13 lines (12 loc) • 454 B
TypeScript
import type { TabsProps as TabsPropsAnt, TabsType } from "antd/lib/tabs";
import "./Tabs.scss";
export interface TabsProps extends TabsPropsAnt {
/**Option change tab styling */
mode?: TabsType;
/**List key of error tab */
tabErrorKeys?: string[];
/**Option for change background color tab to white */
lightColor?: boolean;
}
declare function Tabs(props: TabsProps): import("react/jsx-runtime").JSX.Element;
export default Tabs;