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