@visa/nova-react
Version:
Visa Product Design System Nova React library. Compatible with React ^19.
15 lines (14 loc) • 619 B
TypeScript
import type { ComponentPropsWithRef, ElementType } from 'react';
export type AccordionPanelProperties<ET extends ElementType = 'div'> = {
/** Tag of Component */
tag?: ElementType;
} & ComponentPropsWithRef<ET>;
/**
* Component containing the content of the accordion.
* @docs {@link https://design.visa.com/components/accordion/?code_library=react | See Docs}
*/
declare const AccordionPanel: {
<ET extends ElementType = "div">({ className, tag: Tag, ...remainingProps }: AccordionPanelProperties<ET>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};
export default AccordionPanel;