UNPKG

@engie-group/fluid-design-system-react

Version:

Fluid Design System React

6 lines (5 loc) 445 B
import React, { ComponentPropsWithoutRef, PropsWithChildren } from 'react'; export type NJAccordionItemContentProps = PropsWithChildren & ComponentPropsWithoutRef<'p'>; export declare const NJAccordionItemContent: React.ForwardRefExoticComponent<{ children?: React.ReactNode | undefined; } & Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;