2020-03-08 16:32:25 +08:00

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;
}