@molejs/mole-components-web
Version:
React组件库
16 lines (15 loc) • 506 B
TypeScript
import React, { MouseEventHandler } from 'react';
import { Title } from './PropsType';
export interface TitleProps extends Title {
prefixCls?: string;
titleLeftText?: string;
titleRightText?: string;
titleIcon?: string;
onTitleClick?: MouseEventHandler<HTMLDivElement>;
}
declare class BoardsTitle extends React.Component<TitleProps, any> {
static defaultProps: Partial<TitleProps>;
renderIcon: () => JSX.Element | null;
render(): JSX.Element;
}
export default BoardsTitle;