@primer/react
Version:
An implementation of GitHub's Primer Design System using React
11 lines (10 loc) • 456 B
TypeScript
/// <reference types="react" />
import { SxProp } from '../../sx';
import { ComponentProps } from '../../utils/types';
declare const SelectMenuTabsBase: import("styled-components").StyledComponent<"div", any, SxProp, never>;
export type SelectMenuTabsProps = ComponentProps<typeof SelectMenuTabsBase>;
declare const SelectMenuTabs: {
({ children, ...rest }: SelectMenuTabsProps): JSX.Element;
displayName: string;
};
export default SelectMenuTabs;