carbon-react
Version:
A library of reusable React components for easily building user interfaces.
12 lines (11 loc) • 425 B
TypeScript
import type { ThemeObject } from "../../../style/themes/theme.types";
import { TabProps } from ".";
export type StyledTabProps = Pick<TabProps, "position" | "isTabSelected"> & {
theme?: ThemeObject;
};
declare const StyledTab: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & Pick<TabProps, "position" | "isTabSelected"> & {
theme?: ThemeObject;
}, "theme">;
export default StyledTab;