mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-17 07:13:01 +00:00
31 lines
697 B
TypeScript
31 lines
697 B
TypeScript
import { PureComponent } from 'react';
|
|
import './index.scss';
|
|
export default class TopIcon extends PureComponent {
|
|
static displayName: string;
|
|
static propTypes: {
|
|
active: any;
|
|
className: any;
|
|
disabled: any;
|
|
icon: any;
|
|
id: any;
|
|
locked: any;
|
|
onClick: any;
|
|
showTitle: any;
|
|
style: any;
|
|
title: any;
|
|
};
|
|
static defaultProps: {
|
|
active: boolean;
|
|
className: string;
|
|
disabled: boolean;
|
|
icon: string;
|
|
id: string;
|
|
locked: boolean;
|
|
onClick: () => void;
|
|
showTitle: boolean;
|
|
style: {};
|
|
title: string;
|
|
};
|
|
render(): JSX.Element;
|
|
}
|