carbon-react
Version:
A library of reusable React components for easily building user interfaces.
9 lines (8 loc) • 308 B
TypeScript
import { TabsProps } from ".";
export interface StyledTabsProps extends Pick<TabsProps, "headerWidth" | "position"> {
isInSidebar?: boolean;
}
declare const StyledTabs: import("styled-components").StyledComponent<"div", any, {
theme: object;
} & StyledTabsProps, "theme">;
export default StyledTabs;