@engie-group/fluid-design-system-react
Version:
Fluid Design System React
17 lines (16 loc) • 462 B
TypeScript
import React, { PropsWithChildren } from 'react';
export declare const NJTabPanel: React.ForwardRefExoticComponent<ITabPanelProps & React.RefAttributes<HTMLDivElement>>;
export interface ITabPanelProps extends PropsWithChildren {
/**
* Tab panel id
*/
id?: string;
/**
* Aria labelled by, for accessibility reasons
*/
ariaLabelledBy?: string;
/**
* Whether Tab panel is active or not
*/
isActive: boolean;
}