@capgeminiuk/dcx-react-library
Version:
[](https://circleci.com/gh/Capgemini/dcx-react-library)
17 lines (16 loc) • 445 B
TypeScript
import React from 'react';
export interface AccordionDetailsProps {
/**
* will allow to specify the className
*/
className?: string;
/**
* will allow to pass whatever element you prefer
*/
children: JSX.Element;
/**
* you can define your own properties
*/
props?: any;
}
export declare const AccordionDetails: ({ className, children, ...props }: AccordionDetailsProps) => React.JSX.Element;