UNPKG

@capgeminiuk/dcx-react-library

Version:

[![CircleCI](https://circleci.com/gh/Capgemini/dcx-react-library.svg?style=svg)](https://circleci.com/gh/Capgemini/dcx-react-library)

17 lines (16 loc) 445 B
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;