UNPKG

@primer/components

Version:
15 lines (14 loc) 583 B
/// <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;