@primer/components
Version:
Primer react components
14 lines (13 loc) • 560 B
TypeScript
/// <reference types="react" />
import { SystemCommonProps } from '../constants';
import { SxProp } from '../sx';
import { ComponentProps } from '../utils/types';
declare const TabPanelBase: import("styled-components").StyledComponent<"div", any, SystemCommonProps & SxProp, never>;
export declare type SelectMenuTabPanelProps = {
tabName?: string;
} & ComponentProps<typeof TabPanelBase>;
declare const TabPanel: {
({ tabName, className, children, ...rest }: SelectMenuTabPanelProps): JSX.Element;
displayName: string;
};
export default TabPanel;