@engie-group/fluid-design-system-react
Version:
Fluid Design System React
12 lines (11 loc) • 514 B
TypeScript
import React from 'react';
import { WithHTMLAttributes } from '../../utils/typeHelpers';
export declare const NJTabPanel: React.ForwardRefExoticComponent<import("../../utils/typeHelpers").HTMLAttributesWithoutComponentProps<"div", NJTabPanelOwnProps> & NJTabPanelOwnProps & React.RefAttributes<HTMLDivElement>>;
type NJTabPanelOwnProps = {
/**
* Whether the Tab panel is active or not
*/
active: boolean;
};
export type NJTabPanelProps = WithHTMLAttributes<NJTabPanelOwnProps, 'div'>;
export {};