@primer/components
Version:
Primer react components
15 lines (14 loc) • 583 B
TypeScript
/// <reference types="react" />
import { SystemCommonProps } from '../constants';
import { SxProp } from '../sx';
import { ComponentProps } from '../utils/types';
declare const StyledTab: import("styled-components").StyledComponent<"button", any, SystemCommonProps & SxProp, never>;
export declare type SelectMenuTabProps = {
tabName?: string;
index?: number;
} & ComponentProps<typeof StyledTab>;
declare const SelectMenuTab: {
({ tabName, index, className, onClick, ...rest }: SelectMenuTabProps): JSX.Element;
displayName: string;
};
export default SelectMenuTab;