@carton-org/react-neumorphism
Version:
A React component library implementing the neumorphism design style
21 lines • 794 B
TypeScript
import { Theme } from '@emotion/react';
import { Sizes } from '../../constants';
interface TabsProps {
theme: Theme;
size?: Sizes;
insetTab?: boolean;
insetContent?: boolean;
items: {
label: string;
icon?: React.ReactNode;
content: React.ReactNode;
}[];
activeTabIndex: number;
onChangeIndexTab: (tab: number) => void;
tabLabelStyle?: React.CSSProperties;
}
declare const _default: import('react').ForwardRefExoticComponent<Pick<TabsProps & import('react').RefAttributes<HTMLDivElement>, "size" | keyof import('react').RefAttributes<HTMLDivElement> | "items" | "insetTab" | "insetContent" | "activeTabIndex" | "onChangeIndexTab" | "tabLabelStyle"> & {
theme?: Theme;
}>;
export default _default;
//# sourceMappingURL=Tabs.d.ts.map