Files
icehrm/web/node_modules/rc-table/lib/Panel/index.d.ts
2020-05-20 18:47:29 +02:00

8 lines
214 B
TypeScript

import * as React from 'react';
export interface TitleProps {
className: string;
children: React.ReactNode;
}
declare function Panel({ className, children }: TitleProps): JSX.Element;
export default Panel;